Skip to content

Commit

Permalink
bump to 4.1.0 (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkhomenko authored Apr 13, 2021
1 parent 705826d commit 388e093
Showing 3 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
4.0.2
4.1.0
* Exposes billing metrics
* Adds runtime environment headers to queries
* Always sends query timeout header
* Expr(NullV) is instantiated only once and reused
* Enables user to pass a custom user agent
* Adds ability to combine Fields
* Removes the requirement to call `close()` to terminate a FaunaClient session

4.0.1
* Fix JavaDoc errors
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ This repository contains the FaunaDB drivers for the JVM languages. Currently, J

Javadocs and Scaladocs are hosted on GitHub:

* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.0.1/faunadb-java/api/)
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.0.1/faunadb-scala/api/)
* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.1.0/faunadb-java/api/)
* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.1.0/faunadb-scala/api/)

Details Documentation for each language:

@@ -54,7 +54,7 @@ Download from the Maven central repository:
<dependency>
<groupId>com.faunadb</groupId>
<artifactId>faunadb-java</artifactId>
<version>4.0.1</version>
<version>4.1.0</version>
<scope>compile</scope>
</dependency>
...
@@ -109,7 +109,7 @@ public class Main {

MetricsResponse metricsResponse = adminClient.queryWithMetrics(
Paginate(Match(Index("spells_by_element"), Value("fire"))),
null
Optional.empty()
).get();

// the result of the query, as if you invoke 'adminClient.query' function instead
@@ -192,7 +192,7 @@ List<Value> events = capturedEvents.get();
##### faunadb-scala/sbt

```scala
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.0.1")
libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.1.0")
```

##### Basic Usage
2 changes: 1 addition & 1 deletion project/Settings.scala
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ import scoverage.ScoverageSbtPlugin.autoImport._

object Settings {

lazy val driverVersion = "4.0.1"
lazy val driverVersion = "4.1.0"

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

0 comments on commit 388e093

Please sign in to comment.