Skip to content

Commit

Permalink
Merge pull request #142 from mapbox:11.2.0-beta.1
Browse files Browse the repository at this point in the history
Update SPM and CocoaPods configs for 11.2.0-beta.1 release
  • Loading branch information
persidskiy authored Jan 30, 2024
2 parents d9cdf51 + f12f53d commit 6f1e56f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
macos:
xcode: 13.4.1 # Specify the Xcode version to use
xcode: 14.3.1 # Specify the Xcode version to use

# Add steps to the job
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
Expand Down
4 changes: 2 additions & 2 deletions MapboxCoreMaps.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|

version = '11.1.0'
version = '11.2.0-beta.1'

m.name = 'MapboxCoreMaps'
m.version = version
Expand All @@ -22,6 +22,6 @@ Pod::Spec.new do |m|

m.vendored_frameworks = 'MapboxCoreMaps.xcframework'

m.dependency 'MapboxCommon', '~> 24.1'
m.dependency 'MapboxCommon', '~> 24.2.0-beta'

end
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
// swift-tools-version:5.3
// swift-tools-version:5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription
import Foundation

let version = "11.1.0"
let checksum = "ad8a927023569434abd3a6da6fe232d531e4e76ae24f4ff6d089d08e8c971dbf"
let version = "11.2.0-beta.1"
let checksum = "e57f8408728246dd1ca56c3b6affca5b33c81424a741d42bb7a193de890a0873"

let package = Package(
name: "MapboxCoreMaps",
platforms: [.iOS(.v10), .macOS(.v10_15)],
platforms: [.iOS(.v10), .macOS(.v10_15), .custom("visionos", versionString: "1.0")],
products: [
.library(
name: "MapboxCoreMaps",
targets: ["MapboxCoreMapsWrapper"]),
],
dependencies: [
.package(name: "MapboxCommon", url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.1.0"),
.package(name: "MapboxCommon", url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.2.0-beta.1"),
],
targets: [
.target(
Expand Down

0 comments on commit 6f1e56f

Please sign in to comment.