From 81ee0d17b04659c3fa476144cb85f8b322cec6f6 Mon Sep 17 00:00:00 2001 From: Quin Lynch Date: Fri, 20 Oct 2023 13:17:59 -0300 Subject: [PATCH] meta: 0.2.3 --- README.md | 8 ++++---- build.gradle | 2 +- examples/scala-examples/build.sbt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 499c5e4..49c928d 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The Java binding is distrubuted via maven central: #### Gradle ```groovy -implementation 'com.edgedb:driver:0.2.2' +implementation 'com.edgedb:driver:0.2.3' ``` #### Maven @@ -28,7 +28,7 @@ implementation 'com.edgedb:driver:0.2.2' com.edgedb driver - 0.2.2 + 0.2.3 ``` @@ -36,7 +36,7 @@ implementation 'com.edgedb:driver:0.2.2' ```scala libraryDependencies ++= Seq( - "com.edgedb" % "driver" % "0.2.2" + "com.edgedb" % "driver" % "0.2.3" ) ``` @@ -55,7 +55,7 @@ void main() { } ``` -The `EdgeDBClient` uses `CompletionState` for asynchronous operations, allowing you +The `EdgeDBClient` uses `CompletionStage` for asynchronous operations, allowing you to integrate it with your favorite asynchronous frameworks ```java diff --git a/build.gradle b/build.gradle index 884201d..ea4ab4e 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { } ext { - project_version = '0.2.3-SNAPSHOT' + project_version = '0.2.3' github_org = 'edgedb' project_name = 'edgedb-java' artifact_group = 'com.edgedb' diff --git a/examples/scala-examples/build.sbt b/examples/scala-examples/build.sbt index 410c077..90aa6c3 100644 --- a/examples/scala-examples/build.sbt +++ b/examples/scala-examples/build.sbt @@ -3,7 +3,7 @@ ThisBuild / version := "0.1.0-SNAPSHOT" ThisBuild / scalaVersion := "3.1.3" libraryDependencies ++= Seq( - "com.edgedb" % "driver" % "0.2.1" from "file:///" + System.getProperty("user.dir") + "/lib/com.edgedb.driver-0.2.2.jar", + "com.edgedb" % "driver" % "0.2.3" from "file:///" + System.getProperty("user.dir") + "/lib/com.edgedb.driver-0.2.3.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",