Skip to content

Commit

Permalink
Prepare for v2.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
scullxbones committed Dec 23, 2019
1 parent e82263b commit 9b3b732
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

* Cross-compiled for 2.11 / 2.12 - Java 8 targeted
* Active development
* Latest release - `2.3.1` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details)
* Latest release - `2.3.2` ~ compatible with Akka 2.5.12+ (see [#179](https://github.com/scullxbones/akka-persistence-mongo/issues/179) for details)

### Using Akka 2.4? Use 1.x Series.
[![Build Status](https://travis-ci.org/scullxbones/akka-persistence-mongo.svg?branch=akka24)](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 = "2.3.1"
val releaseV = "2.3.2"

val scala211V = "2.11.12"
val scala212V = "2.12.10"
Expand Down
8 changes: 4 additions & 4 deletions docs/akka25.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@

(Official Scala)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.3.1"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-scala" % "2.3.2"
```
(Casbah)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.3.1"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-casbah" % "2.3.2"
```
(Reactive Mongo)
##### Please note: Supported versions of reactive mongo require the `0.12` series, with a minimum version number of `0.12.3` (for Akka 2.5 support)
```scala
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.3.1"
libraryDependencies +="com.github.scullxbones" %% "akka-persistence-mongo-rxmongo" % "2.3.2"
```
* Inside of your `application.conf` file, add the following line if you want to use the journal (snapshot is optional). The casbah/rxmongo selection should be pulled in by a `reference.conf` in the driver jar you choose:
```
Expand Down Expand Up @@ -644,7 +644,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 ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.3.1",
libraryDependencies ++= Seq( "com.github.scullxbones" %% "akka-persistence-mongo-tools" % "2.3.2",
"org.mongodb.scala" %% "mongo-scala-driver" % "2.4.2" )
```
Notice that even if you currently don't use it, migration process is performed through Official Scala driver.
Expand Down
24 changes: 24 additions & 0 deletions docs/changelog25.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
## Changelog for 2.x major version

### 2.3.2
* Upgrade what was possible; fix some scalatest deprecations; scalatest 3.1.0 requires akka to jump first due to recompile requirement
* Clean up outstanding warnings, deprecations, etc
* Update to latest sbt-pgp sbt-sonatype
* Merge pull request #282 from scala-steward/update/sbt-1.3.5
* Merge pull request #284 from scala-steward/update/slf4j-api-1.7.30
* Merge pull request #288 from scala-steward/update/reactivemongo-0.19.5
* Merge pull request #287 from scala-steward/update/mongodb-driver-3.12.0
* Update reactivemongo, ... to 0.19.5
* Update mongodb-driver, ... to 3.12.0
* Merge branch 'master' into update/slf4j-api-1.7.30
* Merge pull request #273 from scala-steward/update/reactivemongo-0.18.8
* Merge pull request #274 from scala-steward/update/metrics4-akka_a24-4.1.1
* Merge pull request #277 from scala-steward/update/mongodb-driver-3.11.2
* Merge pull request #283 from scala-steward/update/log4j-core-2.13.0
* Merge pull request #286 from scala-steward/update/netty-buffer-4.1.44.Final
* Update netty-buffer, netty-handler, ... to 4.1.44.Final
* Update slf4j-api to 1.7.30
* Update log4j-api, log4j-core, ... to 2.13.0
* Update sbt to 1.3.5
* Update mongodb-driver, ... to 3.11.2
* Update metrics4-akka_a24 to 4.1.1
* Update reactivemongo, ... to 0.18.8

### 2.3.1
* Remove unintended for-comp filter sugar
* Improve collections count (#260)
Expand Down
3 changes: 1 addition & 2 deletions release_process_post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
git push origin master
git push origin --tags

sbt +publishSigned
sbt sonatypeReleaseAll
sbt "; +publishSigned; sonatypeBundleRelease"

0 comments on commit 9b3b732

Please sign in to comment.