diff --git a/README.md b/README.md
index 63374f8..782caf5 100644
--- a/README.md
+++ b/README.md
@@ -90,7 +90,7 @@ Add the following to your `build.sbt`:
```scala
resolvers += "jitpack" at "https://jitpack.io"
-libraryDependencies += "com.github.suprnation.cats-actors" %% "cats-actors" % "2.0.0-RC4"
+libraryDependencies += "com.github.suprnation.cats-actors" %% "cats-actors" % "2.0.0-RC5"
```
#### Using Maven
@@ -114,7 +114,7 @@ Add the following to your `pom.xml`:
cats-actors_2.13
or
cats-actors_3
- 2.0.0-RC4
+ 2.0.0-RC5
```
@@ -128,8 +128,8 @@ Add the following to your `repositories.bzl` and `WORKSPACE` files:
def load_dependencies():
maven_install(
artifacts = [
- "com.github.suprnation.cats-actors:cats-actors_2_13:2.0.0-RC4", // or
- "com.github.suprnation.cats-actors:cats-actors_3:2.0.0-RC4",
+ "com.github.suprnation.cats-actors:cats-actors_2_13:2.0.0-RC5", // or
+ "com.github.suprnation.cats-actors:cats-actors_3:2.0.0-RC5",
],
repositories = [
"https://jitpack.io",
diff --git a/build.sbt b/build.sbt
index 38d6289..7960ca8 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ import sbt._
import Keys._
ThisBuild / organization := "com.suprnation"
-ThisBuild / version := "2.0.0-RC4"
+ThisBuild / version := "2.0.0-RC5"
ThisBuild / organizationName := "SuprNation"
ThisBuild / startYear := Some(2024)
ThisBuild / licenses += ("Apache-2.0", url("https://www.apache.org/licenses/LICENSE-2.0.txt"))