Skip to content

Commit

Permalink
Update version to 0.22.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tcobbs-bentley committed Apr 5, 2024
1 parent fb59b23 commit 8915e9b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"repositoryURL": "https://github.com/iTwin/mobile-native-ios",
"state": {
"branch": null,
"revision": "42cecc0fd5eabfce0b84a580595bb8b420ebe0c7",
"version": "4.4.6"
"revision": "456858849159e754582a9d49124f93edfe6829c3",
"version": "4.5.32"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(name: "itwin-mobile-native", url: "https://github.com/iTwin/mobile-native-ios", .exact("4.4.6")),
.package(name: "itwin-mobile-native", url: "https://github.com/iTwin/mobile-native-ios", .exact("4.5.32")),
.package(url: "https://github.com/AsyncSwift/AsyncLocationKit.git", .upToNextMajor(from: "1.5.6")),
.package(name: "Reachability", url: "https://github.com/ashleymills/Reachability.swift", from: "5.1.0"),
.package(name: "AppAuth", url: "https://github.com/openid/AppAuth-iOS.git", .upToNextMajor(from: "1.6.0")),
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ This package is delivered as source-only and supports two options for dependency

### Swift Package Manager

With [Swift Package Manager](https://swift.org/package-manager), add `https://github.com/iTwin/mobile-sdk-ios` to your project's Package Dependencies settings in Xcode, making sure to set the "Dependency Rule" to "Exact Version" and the version to "0.22.3".
With [Swift Package Manager](https://swift.org/package-manager), add `https://github.com/iTwin/mobile-sdk-ios` to your project's Package Dependencies settings in Xcode, making sure to set the "Dependency Rule" to "Exact Version" and the version to "0.22.4".

Or add the following package to your `Package.swift` dependencies:

```swift
dependencies: [
.package(name: "itwin-mobile-sdk", url: "https://github.com/iTwin/mobile-sdk-ios", .exact("0.22.3"))
.package(name: "itwin-mobile-sdk", url: "https://github.com/iTwin/mobile-sdk-ios", .exact("0.22.4"))
]
```

Expand All @@ -43,9 +43,9 @@ target 'MyMobileApp' do
use_frameworks!

# Pods for MyMobileApp
pod 'itwin-mobile-native', podspec: 'https://github.com/iTwin/mobile-native-ios/releases/download/4.4.6/itwin-mobile-native-ios.podspec'
pod 'itwin-mobile-sdk', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.22.3/itwin-mobile-sdk.podspec'
pod 'AsyncLocationKit', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.22.3/AsyncLocationKit.podspec'
pod 'itwin-mobile-native', podspec: 'https://github.com/iTwin/mobile-native-ios/releases/download/4.5.32/itwin-mobile-native-ios.podspec'
pod 'itwin-mobile-sdk', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.22.4/itwin-mobile-sdk.podspec'
pod 'AsyncLocationKit', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.22.4/AsyncLocationKit.podspec'
end

post_install do |installer|
Expand All @@ -63,8 +63,8 @@ end
```

## Notes
- This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 4.4.6__, and your app must use that same version of iTwin.js.
- This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 4.5.1__, and your app must use that same version of iTwin.js.

- If you are using this package via CocoaPods, make sure to set the `itwin-mobile-native` CocoaPod to version 4.4.6
- If you are using this package via CocoaPods, make sure to set the `itwin-mobile-native` CocoaPod to version 4.5.32

- You may get a warning from AppAuth's OIDExternalUserAgentIOS.h when you build any project that includes this as a Swift Package. Unfortunately, there is no way that we know of to disable that warning. It can be ignored, though.
4 changes: 2 additions & 2 deletions itwin-mobile-sdk.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "itwin-mobile-sdk"
spec.version = "0.22.3"
spec.version = "0.22.4"
spec.summary = "iTwin Mobile SDK"
spec.homepage = "https://github.com/iTwin/mobile-sdk-ios"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
Expand All @@ -17,5 +17,5 @@ Pod::Spec.new do |spec|
spec.dependency "ReachabilitySwift"
spec.dependency "AsyncLocationKit", "~> 1.0.5"
spec.dependency "AppAuth", "~> 1.4"
spec.dependency "itwin-mobile-native", "4.4.6"
spec.dependency "itwin-mobile-native", "4.5.32"
end

0 comments on commit 8915e9b

Please sign in to comment.