diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 7c4ef02a..0018ce4c 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+4.5.0
+* Emit ResourceNotAvailableException when Fauna returns a 410 status code.
+* Emit TooManyRequestsException when Fauna returns a 429 status code.
+
4.4.0
* Support for tags and traceparent headers. PR: https://github.com/fauna/faunadb-jvm/pull/362
diff --git a/README.md b/README.md
index e4b71b8b..5483f1c8 100644
--- a/README.md
+++ b/README.md
@@ -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.4.0/faunadb-java/api/)
-* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.4.0/faunadb-scala/api/)
+* [faunadb-java](http://fauna.github.io/faunadb-jvm/4.5.0/faunadb-java/api/)
+* [faunadb-scala](http://fauna.github.io/faunadb-jvm/4.5.0/faunadb-scala/api/)
Details Documentation for each language:
@@ -54,7 +54,7 @@ Download from the Maven central repository:
com.faunadb
faunadb-java
- 4.4.0
+ 4.5.0
compile
...
@@ -207,7 +207,7 @@ List events = capturedEvents.get();
##### faunadb-scala/sbt
```scala
-libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.4.0")
+libraryDependencies += ("com.faunadb" %% "faunadb-scala" % "4.5.0")
```
##### Basic Usage
diff --git a/project/Settings.scala b/project/Settings.scala
index a8577e02..11a949bf 100644
--- a/project/Settings.scala
+++ b/project/Settings.scala
@@ -6,7 +6,7 @@ import scoverage.ScoverageSbtPlugin.autoImport._
object Settings {
- lazy val driverVersion = "4.4.0"
+ lazy val driverVersion = "4.5.0"
lazy val scala211 = "2.11.12"
lazy val scala212 = "2.12.14"