Skip to content

Commit 294086e

Browse files
committed
CASL-1485: Upgraded Naksha v2 version to 2.2.15
Signed-off-by: Marcin-Here <ext-marcin.grabowski@here.com>
1 parent 50fccc2 commit 294086e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Naksha_2.2.15
2+
- Added `mom10` module to handle MOM version 10.
3+
14
## Naksha_2.2.14
25
- Refactor the `DefaultStorageHandler.java` to make it extensible without modifying the core implementation.
36

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ mavenPassword=YourPassword
1111
# - here-naksha-lib-core/src/main/com/here/naksha/lib/core/NakshaVersion (static property: latest)
1212
# - here-naksha-app-service/src/main/resources/swagger/openapi.yaml (info.version property)
1313
# - CHANGELOG.md
14-
version=2.2.14
14+
version=2.2.15
1515

here-naksha-app-service/src/main/resources/swagger/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ servers:
1212
info:
1313
title: "Naksha Hub-API"
1414
description: "Naksha Hub-API is a REST API to provide simple access to geo data."
15-
version: "2.2.14"
15+
version: "2.2.15"
1616

1717
security:
1818
- AccessToken: [ ]

here-naksha-lib-core/src/main/java/com/here/naksha/lib/core/NakshaVersion.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,13 @@ public class NakshaVersion implements Comparable<NakshaVersion> {
7272
public static final String v2_2_12 = "2.2.12";
7373
public static final String v2_2_13 = "2.2.13";
7474
public static final String v2_2_14 = "2.2.14";
75+
public static final String v2_2_15 = "2.2.15";
7576

7677
/**
7778
* The latest version of the naksha-extension stored in the resources.
7879
*/
7980
@AvailableSince(v2_0_5)
80-
public static final NakshaVersion latest = of(v2_2_14);
81+
public static final NakshaVersion latest = of(v2_2_15);
8182

8283
private final int major;
8384
private final int minor;

0 commit comments

Comments
 (0)