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

prepare 3.0.0-rc.6 release #208

Merged
merged 1 commit into from
Jan 20, 2025
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog for Open Mobile Maps

## Version 3.0.0
- Update and adjust to [mapscore 3.0.0-rc.5](/~https://github.com/openmobilemaps/maps-core/releases/tag/3.0.0-rc.5) including support for 3d globe rendering
- Update and adjust to [mapscore 3.0.0-rc.6](/~https://github.com/openmobilemaps/maps-core/releases/tag/3.0.0-rc.6) including support for 3d globe rendering
- Update to AGP 8.7.2 and Kotlin 2.0.21

## Version 2.6.2
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ let package = Package(
),
],
dependencies: [
.package(url: "/~https://github.com/openmobilemaps/maps-core", from: .init(stringLiteral: "3.0.0-rc.5")),
.package(url: "/~https://github.com/openmobilemaps/maps-core", from: .init(stringLiteral: "3.0.0-rc.6")),
.package(url: "/~https://github.com/UbiqueInnovation/ubkit-ios", .upToNextMinor(from: "2.0.0")),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This module is designed to be used together with Open Mobile Maps maps-core.
To add the OpenSwissMaps SDK to your Android project, add the following line to your build.gradle

```groovy
implementation 'io.openmobilemaps:layer-gps:3.0.0-rc.5'
implementation 'io.openmobilemaps:layer-gps:3.0.0-rc.6'
```

Make sure you have mavenCentral() listed in your project repositories.
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ dependencies {
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'com.google.android.gms:play-services-location:21.3.0'

api 'io.openmobilemaps:mapscore:3.0.0-rc.5'
api 'io.openmobilemaps:mapscore:3.0.0-rc.6'
implementation "ch.ubique.android:djinni-support-lib:1.0.9"

testImplementation 'junit:junit:4.13.2'
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=layer-gps
VERSION_NAME=3.0.0-rc.5
VERSION_NAME=3.0.0-rc.6
VERSION_CODE=3000000
PUBLISH_VARIANT=release

Expand Down
2 changes: 1 addition & 1 deletion ios/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Once you have your Swift package set up, adding Open Mobile Maps as a dependency

```swift
dependencies: [
.package(url: "/~https://github.com/openmobilemaps/layer-gps.git", from: .init(stringLiteral: "3.0.0-rc.5")))
.package(url: "/~https://github.com/openmobilemaps/layer-gps.git", from: .init(stringLiteral: "3.0.0-rc.6")))
]
```

Expand Down
Loading