diff --git a/CHANGELOG.md b/CHANGELOG.md index af999f41c..f62dc0a4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog for Open Mobile Maps +## Version 2.0.5 (08.04.2024) +- Expose thread_pool_callbacks in scheduler interface +- call onRemoved on layerInterface before the mapScene is destroyed + ## 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..c8d28d48f 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.0.5 +VERSION_CODE=2000500 POM_NAME=mapscore POM_PACKAGING=aar diff --git a/ios/readme.md b/ios/readme.md index 172c5bbd0..5bf2c8af0 100644 --- a/ios/readme.md +++ b/ios/readme.md @@ -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: "2.0.4")) + .package(url: "https://github.com/openmobilemaps/maps-core.git", .upToNextMajor(from: "2.0.5")) ] ``` diff --git a/shared/src/MapsCoreSharedModule.cpp b/shared/src/MapsCoreSharedModule.cpp index 718559133..2119b3cc3 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.0.5"; }