diff --git a/.circleci/config.yml b/.circleci/config.yml index 0df91c0..1af3ba8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -59,7 +59,8 @@ jobs: - run: name: Install Carthage command: | - curl -OL "https://github.com/Carthage/Carthage/releases/download/0.38.0/Carthage.pkg" + sudo softwareupdate --install-rosetta --agree-to-license + curl -OL "https://github.com/Carthage/Carthage/releases/download/0.39.1/Carthage.pkg" sudo installer -pkg Carthage.pkg -target / - run: name: Test Integration via Carthage diff --git a/Package.swift b/Package.swift index e972729..8c33105 100644 --- a/Package.swift +++ b/Package.swift @@ -4,8 +4,8 @@ import PackageDescription import Foundation -let version = "23.10.0" -let checksum = "ff4caff71ba671ca31a459b0b7bba2a063cb7f218c6b2d7445bae15cb38e4642" +let version = "23.11.0" +let checksum = "66d66c808e9765bef608b587b74347cc4b3251714e2a892e2bda53c4198c5f5b" let package = Package( name: "MapboxCommon", diff --git a/README.md b/README.md index 85a186e..20e3b0f 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ machine api.mapbox.com ###### Using SPM Package 📱🖥💻 ```swift -.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "23.10.0"), +.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "23.11.0"), ``` ##### CocoaPods 📱🖥💻 ```ruby -pod 'MapboxCommon', '23.10.0' +pod 'MapboxCommon', '23.11.0' ``` ##### Carthage 📱 @@ -52,7 +52,7 @@ pod 'MapboxCommon', '23.10.0' Add the following code to your Cartfile. ```bash -binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 23.10.0 +binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 23.11.0 ``` Then run the following command in the Terminal. diff --git a/Tests/Integration/Carthage/Cartfile b/Tests/Integration/Carthage/Cartfile index d1260cc..06352ec 100644 --- a/Tests/Integration/Carthage/Cartfile +++ b/Tests/Integration/Carthage/Cartfile @@ -1 +1 @@ -binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 23.10.0 +binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 23.11.0 diff --git a/Tests/Integration/CocoaPods/Podfile b/Tests/Integration/CocoaPods/Podfile index 104a56a..0120878 100644 --- a/Tests/Integration/CocoaPods/Podfile +++ b/Tests/Integration/CocoaPods/Podfile @@ -1,5 +1,5 @@ platform :ios, '11.0' target 'PodInstall' do - pod 'MapboxCommon', '23.10.0' + pod 'MapboxCommon', '23.11.0' end