Skip to content

Commit 5ffdba7

Browse files
authored
Release notes for 4.3.0 (set-streaming) (#353)
1 parent 8d425c9 commit 5ffdba7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
4.3.0
2+
* Keep-alive timeouts set to 3 seconds. PR: https://github.com/fauna/faunadb-jvm/pull/342
3+
* set-streaming enabled. PR: https://github.com/fauna/faunadb-jvm/pull/352
4+
15
4.2.0
26
* Added TransactionContentionException in case 409 HTTP status code is returned from server
37

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This repository contains the FaunaDB drivers for the JVM languages. Currently, J
1515

1616
Javadocs and Scaladocs are hosted on GitHub:
1717

18-
* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.2.0/faunadb-java/api/)
19-
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.2.0/faunadb-scala/api/)
18+
* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.3.0/faunadb-java/api/)
19+
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.3.0/faunadb-scala/api/)
2020

2121
Details Documentation for each language:
2222

@@ -54,7 +54,7 @@ Download from the Maven central repository:
5454
<dependency>
5555
<groupId>com.faunadb</groupId>
5656
<artifactId>faunadb-java</artifactId>
57-
<version>4.2.0</version>
57+
<version>4.3.0</version>
5858
<scope>compile</scope>
5959
</dependency>
6060
...
@@ -207,7 +207,7 @@ List<Value> events = capturedEvents.get();
207207
##### faunadb-scala/sbt
208208

209209
```scala
210-
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.2.0")
210+
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.3.0")
211211
```
212212

213213
##### Basic Usage

project/Settings.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import scoverage.ScoverageSbtPlugin.autoImport._
66

77
object Settings {
88

9-
lazy val driverVersion = "4.2.0"
9+
lazy val driverVersion = "4.3.0"
1010

1111
lazy val scala211 = "2.11.12"
1212
lazy val scala212 = "2.12.14"

0 commit comments

Comments
 (0)