Skip to content

Commit

Permalink
bump: akka-persistence-dynamodb 2.0.1 (#1252)
Browse files Browse the repository at this point in the history
* and doc version
  • Loading branch information
patriknw authored Nov 18, 2024
1 parent 03376bc commit 5232dd2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/release-train-issue-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Variables to be expanded in this template:
- [ ] Check that open PRs and issues assigned to the milestone are reasonable
- [ ] Update the Change date and version in the LICENSE file
- [ ] Update the Akka Projection version in the samples to $VERSION$, otherwise the published zip files of the samples will have the old version.
- [ ] Update the Akka Projection version in `Dependencies.AkkaProjectionVersionInDocs`
- [ ] When changing minor version, update `Dependencies.AkkaProjectionVersionInDocs`
- [ ] Create a new milestone for the [next version](https://github.com/akka/akka-projection/milestones)
- [ ] Close the [$VERSION$ milestone](https://github.com/akka/akka-projection/milestones?direction=asc&sort=due_date)
- [ ] Make sure all important PRs have been merged
Expand Down
8 changes: 5 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ object Dependencies {
val AlpakkaKafkaVersionInDocs = VersionNumber(AlpakkaKafka).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}
val AkkaGrpcVersionInDocs = "2.5.0"
val AkkaGrpcVersionInDocs = VersionNumber(akka.grpc.gen.BuildInfo.version).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}

val AkkaProjectionVersionInDocs = "1.6.1"
val AkkaProjectionVersionInDocs = "1.6"

val AkkaPersistenceCassandra = "1.3.0"
val AkkaPersistenceJdbc = "5.5.0"
Expand All @@ -38,7 +40,7 @@ object Dependencies {
case Seq(major, minor, _*) => s"$major.$minor"
}

val AkkaPersistenceDynamodb = "2.0.0"
val AkkaPersistenceDynamodb = "2.0.1"
val AkkaPersistenceDynamodbVersionInDocs = VersionNumber(AkkaPersistenceDynamodb).numbers match {
case Seq(major, minor, _*) => s"$major.$minor"
}
Expand Down
2 changes: 1 addition & 1 deletion project/project-info.conf
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ project-info {
{
readiness: Supported
since: "2024-10-17"
since-version: "1.6.1"
since-version: "1.6.0"
}
]
}
Expand Down

0 comments on commit 5232dd2

Please sign in to comment.