From e2f1426005616438a1a918abab2edd2fde829aca Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sat, 17 Jun 2017 04:23:12 -0400 Subject: [PATCH] Updated dependencies and changelog. --- CHANGELOG.md | 10 ++++++++++ pom.xml | 14 +++++++------- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44db6de9..b8282641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ ## 3.0.3 +* Updated the following dependencies + * gson: 2.8.0 -> 2.8.1 + * guava: 20.0 -> 22.0 + * byte-buddy: 1.5.12 -> 1.7.1 + * gremlin-core: 3.2.3 -> 3.2.4 + * tinkergraph-gremlin: 3.2.4 -> 3.2.4 + * reflections: 0.9.10 -> 0.9.11 + * maven-license-plugin: 1.9.0 -> 1.10.b1 +* Updated internal traversal code to use the new lambda syntax. + ## 3.0.2 * Updated package dependencies, specifically Byte Buddy, mostly performance improvements. diff --git a/pom.xml b/pom.xml index 4de236a3..e9c2a2f8 100644 --- a/pom.xml +++ b/pom.xml @@ -158,18 +158,18 @@ <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>gremlin-core</artifactId> - <version>3.2.3</version> + <version>3.2.4</version> </dependency> <dependency> <groupId>org.apache.tinkerpop</groupId> <artifactId>tinkergraph-gremlin</artifactId> - <version>3.2.3</version> + <version>3.2.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> - <version>2.8.0</version> + <version>2.8.1</version> </dependency> <dependency> <groupId>junit</groupId> @@ -178,7 +178,7 @@ <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> - <version>20.0</version> + <version>22.0</version> </dependency> <dependency> <groupId>org.mockito</groupId> @@ -189,12 +189,12 @@ <dependency> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> - <version>1.5.12</version> + <version>1.7.1</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> - <version>0.9.10</version> + <version>0.9.11</version> </dependency> </dependencies> @@ -233,7 +233,7 @@ <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> - <version>1.9.0</version> + <version>1.10.b1</version> <configuration> <skipExistingHeaders>false</skipExistingHeaders> </configuration> -- GitLab