Skip to content

Commit a1fa2c5

Browse files
authored
Merge pull request #286 from fauna/release-4.0.1
Release 4.0.1
2 parents 061c6c5 + dbc131a commit a1fa2c5

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
4.0.1
2+
* Fix JavaDoc errors
3+
14
4.0.0
25
* Upgrade to Java 11
36
* Upgrade project dependencies

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.0.0/faunadb-java/api/)
19-
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.0.0/faunadb-scala/api/)
18+
* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.0.1/faunadb-java/api/)
19+
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.0.1/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.0.0</version>
57+
<version>4.0.1</version>
5858
<scope>compile</scope>
5959
</dependency>
6060
...
@@ -158,7 +158,7 @@ List<Value> events = capturedEvents.get();
158158
##### faunadb-scala/sbt
159159

160160
```scala
161-
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.0.0")
161+
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.0.1")
162162
```
163163

164164
##### 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.0.0"
9+
lazy val driverVersion = "4.0.1"
1010

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

0 commit comments

Comments
 (0)