Skip to content

Commit

Permalink
remove rc from version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maerki authored Feb 5, 2025
1 parent c9a90c2 commit 869bc72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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.6
VERSION_NAME=3.0.0
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 @@ -64,7 +64,7 @@ This library is available on MavenCentral. To add it to your Android project, ad

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

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", from: .init(stringLiteral: "3.0.0-rc.6"))
.package(url: "https://github.com/openmobilemaps/maps-core", from: .init(stringLiteral: "3.0.0"))
]
```

Expand Down
2 changes: 1 addition & 1 deletion shared/src/MapsCoreSharedModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

#include "MapsCoreSharedModule.h"

std::string MapsCoreSharedModule::version() { return "3.0.0-rc.6"; }
std::string MapsCoreSharedModule::version() { return "3.0.0"; }

0 comments on commit 869bc72

Please sign in to comment.