Skip to content

Commit e62f088

Browse files
author
mpv1989
committed
prepare release 4.2.1
1 parent a243623 commit e62f088

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

Diff for: ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v4.2.1 (2017-06-20)
2+
---------------------------
3+
* fixed deserializing of internal field _id
4+
15
v4.2.0 (2017-06-14)
26
---------------------------
37
* added ArangoDBVersion.getLicense()

Diff for: pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.arangodb</groupId>
66
<artifactId>arangodb-java-driver</artifactId>
7-
<version>4.2.1-SNAPSHOT</version>
7+
<version>4.2.1</version>
88
<inceptionYear>2016</inceptionYear>
99
<packaging>jar</packaging>
1010

@@ -28,7 +28,7 @@
2828
<hamcrest-all.version>1.3</hamcrest-all.version>
2929
<junit.version>4.12</junit.version>
3030
<httpclient.version>4.5.1</httpclient.version>
31-
<arangodb.velocypack.version>1.0.8</arangodb.velocypack.version>
31+
<arangodb.velocypack.version>1.0.9</arangodb.velocypack.version>
3232
</properties>
3333

3434
<developers>

Diff for: src/test/java/com/arangodb/ArangoDBTest.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,14 @@ public void getVersion() {
9191

9292
@Test
9393
public void createDatabase() {
94-
final Boolean result = arangoDB.createDatabase(BaseTest.TEST_DB);
95-
assertThat(result, is(true));
9694
try {
97-
arangoDB.db(BaseTest.TEST_DB).drop();
98-
} catch (final ArangoDBException e) {
95+
final Boolean result = arangoDB.createDatabase(BaseTest.TEST_DB);
96+
assertThat(result, is(true));
97+
} finally {
98+
try {
99+
arangoDB.db(BaseTest.TEST_DB).drop();
100+
} catch (final ArangoDBException e) {
101+
}
99102
}
100103
}
101104

0 commit comments

Comments
 (0)