From 79af71bc36a5433395c814e5f2794b2c447c0ad6 Mon Sep 17 00:00:00 2001 From: DorkMatter Date: Tue, 9 Mar 2021 17:22:11 +0200 Subject: [PATCH] [release] Bump to v10.0.0 --- Package.swift | 4 ++-- README.md | 6 +++--- Tests/Integration/Carthage/Cartfile | 2 +- Tests/Integration/CocoaPods/Podfile | 2 +- Tests/Integration/SPM/project.yml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Package.swift b/Package.swift index ff0c8eb..eab0f87 100644 --- a/Package.swift +++ b/Package.swift @@ -5,8 +5,8 @@ import PackageDescription import Foundation let registry = SDKRegistry() -let version = "10.0.0-beta.12" -let checksum = "fa819afcef8df011ef645143dfe70e53ec26abf0dbf815a2ef3728b406eee9c9" +let version = "10.0.0" +let checksum = "7c69539d9bade7f42ea1fa2f25a12a2b0be5ab2b7e2d33ed5faa26a1e145058c" let package = Package( name: "MapboxCommon", diff --git a/README.md b/README.md index c9ad5d3..ec3b565 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,13 @@ machine api.mapbox.com ###### Using SPM Package 📱🖥💻 ```swift -.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "10.0.0-beta.8"), +.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "10.0.0"), ``` ##### CocoaPods 📱🖥💻 ```ruby -pod 'MapboxCommon', '10.0.0-beta.8' +pod 'MapboxCommon', '10.0.0' ``` ##### Carthage 📱 @@ -44,7 +44,7 @@ pod 'MapboxCommon', '10.0.0-beta.8' Add the following code to your Cartfile. ```bash -binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0-beta.8 +binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0 ``` Then run the following command in the Terminal. diff --git a/Tests/Integration/Carthage/Cartfile b/Tests/Integration/Carthage/Cartfile index a0a2f18..72d9aee 100644 --- a/Tests/Integration/Carthage/Cartfile +++ b/Tests/Integration/Carthage/Cartfile @@ -1 +1 @@ -binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0-beta.12 +binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0 diff --git a/Tests/Integration/CocoaPods/Podfile b/Tests/Integration/CocoaPods/Podfile index cf5e213..d0e977e 100644 --- a/Tests/Integration/CocoaPods/Podfile +++ b/Tests/Integration/CocoaPods/Podfile @@ -1,5 +1,5 @@ platform :ios, '11.0' target 'PodInstall' do - pod 'MapboxCommon', '10.0.0-beta.12' + pod 'MapboxCommon', '10.0.0' end diff --git a/Tests/Integration/SPM/project.yml b/Tests/Integration/SPM/project.yml index b46c2d5..ce3fdcd 100644 --- a/Tests/Integration/SPM/project.yml +++ b/Tests/Integration/SPM/project.yml @@ -4,7 +4,7 @@ options: packages: MapboxCommon: url: git@github.com:mapbox/mapbox-common-ios.git - branch: release-v10.0.0-beta.12 + branch: release-v10.0.0 targets: SPMTest: type: application