Skip to content

Commit

Permalink
chore: Update for release 1.4.2
Browse files Browse the repository at this point in the history
VERSION.md, pom.xml, README.md and DriverInfo.java have been updated.
  • Loading branch information
bylee5 committed Jan 11, 2018
1 parent b7c20cf commit 9fdf090
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You can download the precompiled driver(jar) from [bitnine.net/downloads](http:/
<dependency>
<groupId>net.bitnine</groupId>
<artifactId>agensgraph-jdbc</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
</dependency>
```
You may search the latest version on [The Central Repository with GroupId and ArtifactId](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22net.bitnine%22%20AND%20a%3A%22agensgraph-jdbc%22)
Expand Down
3 changes: 3 additions & 0 deletions VERSION.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
1.4.2 / 2010-01-11
* feat: Support `getKeys()` and `getTypedValue()`

1.4.1 / 2017-12-19
------------------
* `JsonbUtil`, `JsonbArrayBuilder`, and `JsonbObjectBuilder` now support `Iterable` and `Map` for their values.
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>net.bitnine</groupId>
<artifactId>agensgraph-jdbc</artifactId>
<version>1.4.1</version>
<version>1.4.2</version>
<packaging>jar</packaging>

<name>Agensgraph JDBC</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/bitnine/agensgraph/util/DriverInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ private DriverInfo() {
}

public static final String DRIVER_NAME = "AgensGraph JDBC Driver";
public static final String DRIVER_VERSION = "1.4.1";
public static final String DRIVER_VERSION = "1.4.2";
public static final String DRIVER_FULL_NAME = DRIVER_NAME + " " + DRIVER_VERSION;

public static final int MAJOR_VERSION = 1;
public static final int MINOR_VERSION = 4;
public static final int PATCH_VERSION = 1;
public static final int PATCH_VERSION = 2;
}

0 comments on commit 9fdf090

Please sign in to comment.