Skip to content

Commit

Permalink
meta: 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quinchs committed May 3, 2024
1 parent 0b91977 commit cd5034c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ The Java binding is distrubuted via maven central:

#### Gradle
```groovy
implementation 'com.edgedb:driver:0.2.3'
implementation 'com.edgedb:driver:0.3.0'
```

#### Maven
```xml
<dependency>
<groupId>com.edgedb</groupId>
<artifactId>driver</artifactId>
<version>0.2.3</version>
<version>0.3.0</version>
</dependency>
```

#### SBT

```scala
libraryDependencies ++= Seq(
"com.edgedb" % "driver" % "0.2.3"
"com.edgedb" % "driver" % "0.3.0"
)
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

ext {
project_version = '0.2.4-SNAPSHOT'
project_version = '0.3.0'
github_org = 'edgedb'
project_name = 'edgedb-java'
artifact_group = 'com.edgedb'
Expand Down
2 changes: 1 addition & 1 deletion examples/scala-examples/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "3.1.3"

libraryDependencies ++= Seq(
"com.edgedb" % "driver" % "0.2.3" from "file:///" + System.getProperty("user.dir") + "/lib/com.edgedb.driver-0.2.3.jar",
"com.edgedb" % "driver" % "0.3.0" from "file:///" + System.getProperty("user.dir") + "/lib/com.edgedb.driver-0.3.0.jar",
"ch.qos.logback" % "logback-classic" % "1.4.7",
"ch.qos.logback" % "logback-core" % "1.4.7",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.15.1",
Expand Down

0 comments on commit cd5034c

Please sign in to comment.