Skip to content

Commit

Permalink
bump: Akka 2.8.1 (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanandren committed Apr 28, 2023
1 parent a738d2a commit cc2db29
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ object Dependencies {

object Versions {
// FIXME released version/milestone
val akka = sys.props.getOrElse("build.akka.version", "2.8.1-M1")
val akka = sys.props.getOrElse("build.akka.version", "2.8.1")
val akkaPersistenceCassandra = "1.1.0"
val akkaPersistenceJdbc = "5.2.0"
// FIXME non-milestone
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-analytics-service-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<akka.version>2.8.1-M1</akka.version>
<akka.version>2.8.1</akka.version>
<akka-projection.version>1.4.0-M4</akka-projection.version>
<akka-persistence-r2dbc.version>1.1.0-M8</akka-persistence-r2dbc.version>
<akka-management.version>1.2.0</akka-management.version>
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-analytics-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ run / javaOptions ++= sys.props
.fold(Seq.empty[String])(res => Seq(s"-Dconfig.resource=$res"))
Global / cancelable := false // ctrl-c

val AkkaVersion = "2.8.1-M1"
val AkkaVersion = "2.8.1"
val AkkaHttpVersion = "10.5.0"
val AkkaManagementVersion = "1.3.0"
val AkkaPersistenceR2dbcVersion = "1.1.0-M8"
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-cart-service-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<akka.version>2.8.1-M1</akka.version>
<akka.version>2.8.1</akka.version>
<akka-projection.version>1.4.0-M4</akka-projection.version>
<akka-persistence-r2dbc.version>1.1.0-M8</akka-persistence-r2dbc.version>
<akka-management.version>1.2.0</akka-management.version>
Expand Down
2 changes: 1 addition & 1 deletion samples/grpc/shopping-cart-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ run / javaOptions ++= sys.props
.fold(Seq.empty[String])(res => Seq(s"-Dconfig.resource=$res"))
Global / cancelable := false // ctrl-c

val AkkaVersion = "2.8.1-M1"
val AkkaVersion = "2.8.1"
val AkkaHttpVersion = "10.5.0"
val AkkaManagementVersion = "1.3.0"
val AkkaPersistenceR2dbcVersion = "1.1.0-M8"
Expand Down
2 changes: 1 addition & 1 deletion samples/replicated/shopping-cart-service-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<akka.version>2.8.1-M1</akka.version>
<akka.version>2.8.1</akka.version>
<akka-projection.version>1.4.0-M4</akka-projection.version>
<akka-persistence-r2dbc.version>1.1.0-M8</akka-persistence-r2dbc.version>
<akka-management.version>1.2.0</akka-management.version>
Expand Down
2 changes: 1 addition & 1 deletion samples/replicated/shopping-cart-service-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ run / javaOptions ++= sys.props
.fold(Seq.empty[String])(res => Seq(s"-Dconfig.resource=$res"))
Global / cancelable := false // ctrl-c

val AkkaVersion = sys.props.getOrElse("akka.version", "2.8.1-M1")
val AkkaVersion = sys.props.getOrElse("akka.version", "2.8.1")
val AkkaHttpVersion = "10.5.0"
val AkkaManagementVersion = "1.3.0"
val AkkaPersistenceR2dbcVersion = "1.1.0-M8"
Expand Down

0 comments on commit cc2db29

Please sign in to comment.