diff --git a/README.md b/README.md index bc16cc5c..7d9f5cf8 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ * Cross-compiled for 2.12 / 2.13 - Java 8 targeted * Active development -* Latest release - `3.0.2` ~ compatible with Akka 2.6 +* Latest release - `3.0.3` ~ compatible with Akka 2.6 ### Using Akka 2.5? Use 2.x Series. [![Build Status](https://travis-ci.org/scullxbones/akka-persistence-mongo.svg?branch=akka25)](https://travis-ci.org/scullxbones/akka-persistence-mongo) diff --git a/build.sbt b/build.sbt index 7245df01..86114e39 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val releaseV = "3.0.2" +val releaseV = "3.0.3" val scala212V = "2.12.11" val scala213V = "2.13.2" diff --git a/docs/akka26.md b/docs/akka26.md index 7b40a858..5b7a7bc9 100644 --- a/docs/akka26.md +++ b/docs/akka26.md @@ -19,12 +19,12 @@ (Official Scala) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "3.0.2" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "3.0.3" ``` (Reactive Mongo) ```scala -libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "3.0.2" +libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "3.0.3" ``` * 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: ``` @@ -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.2" +libraryDependencies += "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "3.0.3" ``` Notice that even if you currently don't use it, migration process is performed through Official Scala driver. diff --git a/docs/changelog26.md b/docs/changelog26.md index 6b2c6bef..1199c053 100644 --- a/docs/changelog26.md +++ b/docs/changelog26.md @@ -1,5 +1,21 @@ ## Changelog for 3.x major version +### 3.0.3 +* Merge pull request #360 from scala-steward/update/mongodb-driver-3.12.6 +* Merge pull request #364 from scala-steward/update/akka-actor-2.6.8 +* Merge pull request #362 from scala-steward/update/netty-buffer-4.1.51.Final +* Merge pull request #352 from scala-steward/update/metrics4-akka_a25-4.1.9 +* Merge pull request #355 from scala-steward/update/junit-4-12-3.2.0.0 +* Merge pull request #354 from scala-steward/update/scalatest-3.2.0 +* Merge pull request #365 from cchantep/task/upd-rm-1.0.0-rc.2 +* Update ReactiveMongo to 1.0.0-rc.2 +* Update akka-actor, akka-cluster-sharding, ... to 2.6.8 +* Update netty-buffer, netty-handler, ... to 4.1.51.Final +* Update mongodb-driver, ... to 3.12.6 +* Update junit-4-12 to 3.2.0.0 +* Update scalatest to 3.2.0 +* Update metrics4-akka_a25 to 4.1.9 + ### 3.0.2 * Merge pull request #344 from scala-steward/update/log4j-core-2.13.3 * Merge pull request #342 from scala-steward/update/netty-buffer-4.1.50.Final diff --git a/release_process_pre.sh b/release_process_pre.sh index 860c797a..be279a8e 100755 --- a/release_process_pre.sh +++ b/release_process_pre.sh @@ -11,7 +11,7 @@ fi NEXT=$1 NEXT_WO_V=$(echo $1 | sed -Ee 's/^v([.0-9]+)$/\1/') -PREVIOUS=$(git describe --tags `git rev-list --tags --max-count=1`) +PREVIOUS=$(git describe --abbrev=0 --tags) PREVIOUS_WO_V=$(echo $PREVIOUS | sed -Ee 's/^v([.0-9]+)$/\1/') if [ "$PREVIOUS" = "$NEXT" ]; then