Skip to content

Commit

Permalink
Prepare for v3.0.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
scullxbones committed Dec 19, 2021
1 parent 41f26a8 commit 0bace14
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

* Cross-compiled for 2.12 / 2.13 - Java 8 targeted
* Active development
* Latest release - `3.0.7` ~ compatible with Akka 2.6
* Latest release - `3.0.8` ~ compatible with Akka 2.6

### Using Akka 2.5? Use 2.x Series.
[![Build Status](https://travis-ci.com/scullxbones/akka-persistence-mongo.svg?branch=akka25)](https://travis-ci.org/scullxbones/akka-persistence-mongo)
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val releaseV = "3.0.7"
val releaseV = "3.0.8"

val scala212V = "2.12.15"
val scala213V = "2.13.7"
Expand Down
6 changes: 3 additions & 3 deletions docs/akka26.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

(Official Scala)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "3.0.7"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "3.0.8"
```

(Reactive Mongo)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "3.0.7"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "3.0.8"
```
* Inside of your `application.conf` file, add the following line if you want to use the journal (snapshot is optional). The driver selection should be pulled in by a `reference.conf` in the driver jar you choose:
```
Expand Down Expand Up @@ -608,7 +608,7 @@ Of course, once this is done, you should **not** start your application, unless
###### Configuration
Add the following to your `build.sbt` file:
```scala
libraryDependencies += "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "3.0.7"
libraryDependencies += "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "3.0.8"
```
Notice that even if you currently don't use it, migration process is performed through Official Scala driver.

Expand Down
12 changes: 12 additions & 0 deletions docs/changelog26.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Changelog for 3.x major version

### 3.0.8
* Merge branch 'master' into update/netty-buffer-4.1.72.Final
* Update reactivemongo, ... to 1.0.10
* Update sbt to 1.5.7
* Update mongo-scala-bson, ... to 4.3.4
* Update mongodb-driver-core, ... to 4.3.4
* Update scala-library to 2.13.7
* Update akka-actor, akka-cluster-sharding, ... to 2.6.17
* Update log4j-api, log4j-core, ... to 2.17.0
* Update netty-buffer, netty-handler, ... to 4.1.72.Final
* Convert release process pre over to linux from osx

### 3.0.7
* Transition from TravisCI to Github Actions (#478)
* Update sbt-sonatype to 3.9.10 (#467)
Expand Down

0 comments on commit 0bace14

Please sign in to comment.