Skip to content

Commit

Permalink
[release] Bump to v10.0.0-beta.10
Browse files Browse the repository at this point in the history
  • Loading branch information
anhnguyen1618 committed Feb 4, 2021
1 parent d030af2 commit a49b92e
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import PackageDescription
import Foundation

let registry = SDKRegistry()
let version = "10.0.0-beta.9"
let checksum = "c5ed2d5ba8beabeeb912524bd9ec135368b69374568c9b9bf8be33b9201d59e7"
let version = "10.0.0-beta.10"
let checksum = "9e8a232c2193dc859acd658e580dd5ba3bad6a916c66084b5338d4090c035650"

let package = Package(
name: "MapboxCommon",
Expand Down
2 changes: 1 addition & 1 deletion Tests/Integration/Carthage/Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0-beta.9
binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 10.0.0-beta.10
2 changes: 1 addition & 1 deletion Tests/Integration/Carthage/Sources/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
assert(try! Version.getString().count > 0)
assert(try! Version.getCommonSDKVersionString().count > 0)
return true
}
}
2 changes: 1 addition & 1 deletion Tests/Integration/CocoaPods/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
platform :ios, '11.0'

target 'PodInstall' do
pod 'MapboxCommon', '10.0.0-beta.9'
pod 'MapboxCommon', '10.0.0-beta.10'
end
2 changes: 1 addition & 1 deletion Tests/Integration/CocoaPods/Sources/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
assert(try! Version.getString().count > 0)
assert(try! Version.getCommonSDKVersionString().count > 0)
return true
}
}
2 changes: 1 addition & 1 deletion Tests/Integration/SPM/Sources/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
assert(try! Version.getString().count > 0)
assert(try! Version.getCommonSDKVersionString().count > 0)
return true
}
}
2 changes: 1 addition & 1 deletion Tests/Integration/SPM/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ options:
packages:
MapboxCommon:
url: [email protected]:mapbox/mapbox-common-ios.git
branch: release-v10.0.0-beta.9
branch: release-v10.0.0-beta.10
targets:
SPMTest:
type: application
Expand Down
2 changes: 1 addition & 1 deletion Tests/MapboxCommonTests/MapboxCommonTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import MapboxCommon

final class MapboxCommonTests: XCTestCase {
func testVersion() {
XCTAssertTrue(Version.getString().count > 0)
XCTAssertTrue(Version.getCommonSDKVersionString().count > 0)
}

static var allTests = [
Expand Down

0 comments on commit a49b92e

Please sign in to comment.