diff --git a/.circleci/config.yml b/.circleci/config.yml index 04e66502..c2ea15ea 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,7 +13,7 @@ workflows: tags: only: /.*/ - prepare_release: - xcode: "13.4.1" + xcode: "14.3.1" filters: tags: only: /.*/ diff --git a/Package.swift b/Package.swift index 69e09e7a..16297032 100644 --- a/Package.swift +++ b/Package.swift @@ -5,8 +5,8 @@ import PackageDescription import Foundation let registry = SDKRegistry() -let version = "1.0.10" -let checksum = "a23a14c445a4d4b81184ad22e778810034b6e82999a6eba21617e76a5cf0f991" +let version = "2.0.0" +let checksum = "ade0ae07e04b9eca2638be66c4f98e5f96666393d05d6a2993b5ba3636208038" let package = Package( name: "MapboxMobileEvents", diff --git a/Tests/Integration/test_carthage.sh b/Tests/Integration/test_carthage.sh index 14f87910..e917008c 100755 --- a/Tests/Integration/test_carthage.sh +++ b/Tests/Integration/test_carthage.sh @@ -12,6 +12,6 @@ fi sed -i '' -e "s|@PATH@|file:///${ROOT_DIR}|g" "${ROOT_DIR}/Tests/Integration/Carthage/Cartfile" xcodegen generate carthage update --platform iOS --use-netrc --use-xcframeworks -xcodebuild -project CarthageTest.xcodeproj -scheme CarthageTest -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' build +xcodebuild -project CarthageTest.xcodeproj -scheme CarthageTest -destination 'platform=iOS Simulator,name=iPhone 13,OS=15.5' build popd diff --git a/Tests/Integration/test_cocoapods.sh b/Tests/Integration/test_cocoapods.sh index 90db25d9..60a25767 100755 --- a/Tests/Integration/test_cocoapods.sh +++ b/Tests/Integration/test_cocoapods.sh @@ -22,7 +22,7 @@ pushd "${ROOT_DIR}/Tests/Integration/CocoaPods" xcodegen generate bundle install bundle exec pod install -xcodebuild -workspace PodInstall.xcworkspace -scheme PodInstall -destination 'platform=iOS Simulator,name=iPhone 11,OS=latest' build +xcodebuild -workspace PodInstall.xcworkspace -scheme PodInstall -destination 'platform=iOS Simulator,name=iPhone 13,OS=15.5' build git restore "${ROOT_DIR}/${PODSPEC_FILE}" diff --git a/Tests/Integration/test_spm_xcode.sh b/Tests/Integration/test_spm_xcode.sh index c916fbc0..f5e7317b 100755 --- a/Tests/Integration/test_spm_xcode.sh +++ b/Tests/Integration/test_spm_xcode.sh @@ -10,6 +10,6 @@ if [ -z `which xcodegen` ]; then fi xcodegen -xcodebuild -project SPMXcode.xcodeproj -scheme SPMXcode build -destination='platform=iOS Simulator,name=iPhone 11,OS=latest' CODE_SIGNING_ALLOWED=NO +xcodebuild -project SPMXcode.xcodeproj -scheme SPMXcode build -destination='platform=iOS Simulator,name=iPhone 13,OS=15.5' CODE_SIGNING_ALLOWED=NO popd