Skip to content

Commit

Permalink
Merge pull request mpollmeier#165 from mpollmeier/3.2.1.x
Browse files Browse the repository at this point in the history
Bumped to 3.2.1 upstream.
  • Loading branch information
mpollmeier committed Aug 3, 2016
2 parents 7f90a90 + ec0c90a commit 1f69fb1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val commonSettings = Seq(
releasePublishArtifactsAction := PgpKeys.publishSigned.value,

libraryDependencies <++= scalaVersion { scalaVersion =>
val gremlinVersion = "3.2.0-incubating"
val gremlinVersion = "3.2.1"
Seq(
"org.apache.tinkerpop" % "gremlin-core" % gremlinVersion exclude("org.slf4j", "slf4j-log4j12"),
"org.scala-lang" % "scala-reflect" % scalaVersion,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,10 @@ object Tests {

override def get_g_V_out_aggregateXaX_path =
graph.asScala.V.out.aggregate("a").path

override def get_g_V_hasLabelXpersonX_aggregateXxX_byXageX_capXxX_asXyX_selectXyX() =
graph.asScala.V.hasLabel("person").aggregate("x").by("age").cap("x").as("y").select("y")
.asInstanceOf[GremlinScala[JCollection[Integer], _]]
}

class ScalaCountTest extends CountTest with StandardTest {
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "3.2.0.2-SNAPSHOT"
version in ThisBuild := "3.2.1.0-SNAPSHOT"

0 comments on commit 1f69fb1

Please sign in to comment.