Skip to content

Commit

Permalink
increase version number
Browse files Browse the repository at this point in the history
  • Loading branch information
stmitt committed Apr 8, 2024
1 parent d23b11b commit acb47e5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
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: "2.0.4"))
.package(url: "https://github.com/openmobilemaps/maps-core.git", .upToNextMajor(from: "2.0.5"))
]
```

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 "2.0.4"; }
std::string MapsCoreSharedModule::version() { return "2.0.5"; }

0 comments on commit acb47e5

Please sign in to comment.