Skip to content

Commit

Permalink
Update version to v3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mattak committed Jan 29, 2016
1 parent 955de3b commit a3bad4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Currently only #decode, #encode, #getZoneByLocation and #getZoneByCode methods a
Gradle:

```
compile 'org.geohex.geohex4j:geohex4j:3.2.0'
compile 'org.geohex.geohex4j:geohex4j:3.2.2'
```

or simply copy org.geohex.geohex4j.GeoHex.java into your app.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.geohex.geohex4j</groupId>
<artifactId>geohex4j</artifactId>
<version>3.2.1</version>
<version>3.2.2</version>
<packaging>jar</packaging>

<name>geohex4j</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/geohex/geohex4j/GeoHex.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* GeoHex V3 for Java implemented by @chshii is licensed under MIT license.
*/
public class GeoHex {
public static final String VERSION = "3.20";
public static final String VERSION = "3.2.2";
public static final String h_key = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
public static final double h_base = 20037508.34;
public static final double h_deg = Math.PI * (30.0 / 180.0);
Expand Down Expand Up @@ -381,4 +381,4 @@ private static final boolean regMatch(CharSequence cs, Pattern pat) {
private static final boolean regMatch(char ch, Pattern pat) {
return regMatch("" + ch, pat);
}
}
}

0 comments on commit a3bad4e

Please sign in to comment.