Skip to content

Commit

Permalink
Update version to 0.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tcobbs-bentley committed Oct 3, 2023
1 parent f7e671e commit 1c54eeb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 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": "02ad1744a0bfeda8a4f37742cebb5fa3e9e8dde8",
"version": "4.1.8"
"revision": "0bac848feaa0cb7d1383ff26b39e1661273af8bd",
"version": "4.1.13"
}
},
{
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.20.1".
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.20.2".

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.20.1"))
.package(name: "itwin-mobile-sdk", url: "https://github.com/iTwin/mobile-sdk-ios", .exact("0.20.2"))
]
```

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.1.8/itwin-mobile-native-ios.podspec'
pod 'itwin-mobile-sdk', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.20.1/itwin-mobile-sdk.podspec'
pod 'AsyncLocationKit', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.20.1/AsyncLocationKit.podspec'
pod 'itwin-mobile-native', podspec: 'https://github.com/iTwin/mobile-native-ios/releases/download/4.1.13/itwin-mobile-native-ios.podspec'
pod 'itwin-mobile-sdk', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.20.2/itwin-mobile-sdk.podspec'
pod 'AsyncLocationKit', podspec: 'https://github.com/iTwin/mobile-sdk-ios/releases/download/0.20.2/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.1.0__, 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.1.7__, 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.1.8
- If you are using this package via CocoaPods, make sure to set the `itwin-mobile-native` CocoaPod to version 4.1.13

- 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.20.1"
spec.version = "0.20.2"
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.1.8"
spec.dependency "itwin-mobile-native", "4.1.13"
end

0 comments on commit 1c54eeb

Please sign in to comment.