Skip to content

Commit bd16378

Browse files
committed
Release 2.0.0
1 parent d87d272 commit bd16378

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Copyright (C) 2014-2015 Stichting Mapcode Foundation (http://www.mapcode.com)
77
This Java project contains a library to encode latitude/longitude pairs to mapcodes
88
and to decode mapcodes back to latitude/longitude pairs.
99

10-
**Online documentation can be found at: http://mapcode-foundation.github.io/mapcode-java/**
11-
1210
**Release notes can be found at: http://mapcode-foundation.github.io/mapcode-java/ReleaseNotes.html**
1311

12+
**Online documentation can be found at: http://mapcode-foundation.github.io/mapcode-java/**
13+
1414
**An example of how to use this library can be found at: https://github.com/mapcode-foundation/mapcode-java-example**
1515

1616
If you wish to use mapcodes in your own application landscape, consider using running an instance of the

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<artifactId>mapcode</artifactId>
99

1010
<packaging>jar</packaging>
11-
<version>1.50.4-SNAPSHOT</version>
11+
<version>2.0.0-SNAPSHOT</version>
1212

1313
<name>Mapcode Java Library</name>
1414
<description>

src/main/java/com/mapcode/Point.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ private Point() {
220220
defined = false;
221221
}
222222

223-
private Point(final double latDeg, final double lonDeg, boolean wrap) {
223+
private Point(final double latDeg, final double lonDeg, final boolean wrap) {
224224
if (wrap) {
225225
this.latDeg = mapToLat(latDeg);
226226
this.lonDeg = mapToLon(lonDeg);

src/site/apt/ReleaseNotes.apt.vm

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@ Release Notes (Version ${project.version})
99
In any case, never depend on them for your own non-<<<SNAPSHOT>>> releases.
1010
#end
1111

12-
* 1.50.4
12+
* 2.0.0
1313

14-
* To do.
14+
* Fixes to the data rectangles (primarily intended for ISO proposal).
15+
16+
* Note that this release only allows high-precision mapcodes up to 2 additional suffix characters.
17+
A future release will be scheduled to allow up to 8 suffix characters (nanometer accuracy).
1518

1619
[]
1720

0 commit comments

Comments
 (0)