Skip to content

Commit f18dbaa

Browse files
authored
Merge pull request #9 from mapcode-foundation/arabic
added Arabic support
2 parents 35ffeda + 153e8a2 commit f18dbaa

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ For more information, see: http://www.mapcode.com.
2020

2121
## Release Notes
2222

23+
### 2.3.0
24+
25+
* Updated to Java library 2.3.0
26+
2327
### 2.2.4
2428

2529
* Updated to Java library 2.2.4.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.mapcode</groupId>
77
<artifactId>mapcode-example</artifactId>
88
<packaging>jar</packaging>
9-
<version>2.2.4</version>
9+
<version>2.3.0</version>
1010

1111
<name>Mapcode Java Example</name>
1212
<description>
@@ -30,7 +30,7 @@
3030
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>
3131

3232
<!-- Packages. -->
33-
<mapcode.version>2.2.4</mapcode.version>
33+
<mapcode.version>2.3.0</mapcode.version>
3434
<log4j.version>1.2.17</log4j.version>
3535
<slf4j.version>1.7.12</slf4j.version>
3636
</properties>

src/main/java/com/mapcode/example/Example.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@
1616

1717
package com.mapcode.example;
1818

19-
import com.mapcode.*;
19+
import com.mapcode.Mapcode;
20+
import com.mapcode.MapcodeCodec;
21+
import com.mapcode.Point;
22+
import com.mapcode.Territory;
23+
import com.mapcode.UnknownMapcodeException;
24+
import com.mapcode.UnknownTerritoryException;
2025

2126
import java.util.List;
2227

0 commit comments

Comments
 (0)