Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.0.0 rc.2 #651

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ let package = Package(
exclude: ["readme.md"],
resources: [
.process("graphics/Shader/Metal/"),
],
swiftSettings: [
.unsafeFlags(["-Xfrontend", "-strict-concurrency=complete"]),
]
),
.target(
Expand All @@ -127,10 +124,7 @@ let package = Package(
"MapCoreSharedModuleCpp",
],
path: "bridging/ios",
publicHeadersPath: "",
swiftSettings: [
.unsafeFlags(["-Xfrontend", "-strict-concurrency=complete"])
]
publicHeadersPath: ""
),
.target(
name: "MapCoreSharedModuleCpp",
Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/

GROUP=io.openmobilemaps
POM_ARTIFACT_ID=mapscore
VERSION_NAME=3.0.0-rc.1
VERSION_NAME=3.0.0-rc.2
VERSION_CODE=3000000

POM_NAME=mapscore
Expand Down
2 changes: 1 addition & 1 deletion android/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ This library is available on MavenCentral. To add it to your Android project, ad

```
dependencies {
implementation 'io.openmobilemaps:mapscore:3.0.0-rc.1'
implementation 'io.openmobilemaps:mapscore:3.0.0-rc.2'
}
```

Expand Down
2 changes: 1 addition & 1 deletion ios/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For App integration within XCode, add this package to your App target. To do thi
Once you have your Swift package set up, adding Open Mobile Maps as a dependency is as easy as adding it to the dependencies value of your Package.swift.
```swift
dependencies: [
.package(url: "https://github.com/openmobilemaps/maps-core.git", .upToNextMajor(from: "3.0.0"))
.package(url: "https://github.com/openmobilemaps/maps-core", from: .init(stringLiteral: "3.0.0-rc.2"))
]
```

Expand Down
Loading