diff --git a/.github/workflows/sonatype.yml b/.github/workflows/sonatype.yml index d7766bff2..abf077719 100644 --- a/.github/workflows/sonatype.yml +++ b/.github/workflows/sonatype.yml @@ -3,7 +3,7 @@ name: Upload AAR to Sonatype Nexus on: push: tags: - - '[0-9]+.[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+**' jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index e15149211..ee984d549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - Adds dotted line style (line-dotted boolean and an optional skewFactor, defaulting to 1.0 and denoting the stretch factor) - Fixes style for short dashes - Fixes line touch area +- Added a Helper to create geojson strings from GeoJsonPoints ## Version 2.0.4 (22.03.2024) - Changes in symbol vector map collision detection: Run collision detection when zoom changes. This change ensures that icons never collide but also carries a performance burden. diff --git a/android/gradle.properties b/android/gradle.properties index 019337aed..376655fd1 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -31,8 +31,8 @@ SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots/ GROUP=io.openmobilemaps POM_ARTIFACT_ID=mapscore -VERSION_NAME=2.0.4 -VERSION_CODE=2000400 +VERSION_NAME=2.1.0-rc.1 +VERSION_CODE=2010000 POM_NAME=mapscore POM_PACKAGING=aar diff --git a/android/readme.md b/android/readme.md index f5e8ee5cd..e2ce52b30 100644 --- a/android/readme.md +++ b/android/readme.md @@ -65,7 +65,7 @@ This library is available on MavenCentral. To add it to your Android project, ad ``` dependencies { - implementation 'io.openmobilemaps:mapscore:2.0.3' + implementation 'io.openmobilemaps:mapscore:2.1.0-rc.1' } ``` diff --git a/shared/src/MapsCoreSharedModule.cpp b/shared/src/MapsCoreSharedModule.cpp index 718559133..8a5b1d761 100644 --- a/shared/src/MapsCoreSharedModule.cpp +++ b/shared/src/MapsCoreSharedModule.cpp @@ -10,4 +10,4 @@ #include "MapsCoreSharedModule.h" -std::string MapsCoreSharedModule::version() { return "2.0.4"; } +std::string MapsCoreSharedModule::version() { return "2.1.0-rc.1"; }