Skip to content

Commit

Permalink
prepare release 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mpv1989 committed Jun 20, 2017
1 parent a243623 commit e62f088
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v4.2.1 (2017-06-20)
---------------------------
* fixed deserializing of internal field _id

v4.2.0 (2017-06-14)
---------------------------
* added ArangoDBVersion.getLicense()
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.arangodb</groupId>
<artifactId>arangodb-java-driver</artifactId>
<version>4.2.1-SNAPSHOT</version>
<version>4.2.1</version>
<inceptionYear>2016</inceptionYear>
<packaging>jar</packaging>

Expand All @@ -28,7 +28,7 @@
<hamcrest-all.version>1.3</hamcrest-all.version>
<junit.version>4.12</junit.version>
<httpclient.version>4.5.1</httpclient.version>
<arangodb.velocypack.version>1.0.8</arangodb.velocypack.version>
<arangodb.velocypack.version>1.0.9</arangodb.velocypack.version>
</properties>

<developers>
Expand Down
11 changes: 7 additions & 4 deletions src/test/java/com/arangodb/ArangoDBTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,14 @@ public void getVersion() {

@Test
public void createDatabase() {
final Boolean result = arangoDB.createDatabase(BaseTest.TEST_DB);
assertThat(result, is(true));
try {
arangoDB.db(BaseTest.TEST_DB).drop();
} catch (final ArangoDBException e) {
final Boolean result = arangoDB.createDatabase(BaseTest.TEST_DB);
assertThat(result, is(true));
} finally {
try {
arangoDB.db(BaseTest.TEST_DB).drop();
} catch (final ArangoDBException e) {
}
}
}

Expand Down

0 comments on commit e62f088

Please sign in to comment.