Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: License change date for 2.4.3, sample version bumps #1947

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Business Source License 1.1
Parameters

Licensor: Lightbend, Inc.
Licensed Work: Akka gRPC 2.4.2
Licensed Work: Akka gRPC 2.4.3
This license applies to all sub directories and files
UNLESS another license file is present in a sub
directory, then that other license applies to all files
Expand All @@ -19,7 +19,7 @@ Additional Use Grant:
Connecting to a Play Framework websocket and/or Play Framework
request/response bodies for server and play-ws client.

Change Date: 2027-04-30
Change Date: 2027-05-08

Change License: Apache License, Version 2.0

Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
plugins {
id 'java'
id 'application'
id 'com.lightbend.akka.grpc.gradle' version '2.4.2'
id 'com.lightbend.akka.grpc.gradle' version '2.4.3'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-java/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version := "1.0"
scalaVersion := "2.13.13"

val akkaVersion = "2.9.3"
lazy val akkaGrpcVersion = sys.props.getOrElse("akka-grpc.version", "2.4.2")
lazy val akkaGrpcVersion = sys.props.getOrElse("akka-grpc.version", "2.4.3")

enablePlugins(AkkaGrpcPlugin)

Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<akka.version>2.9.3</akka.version>
<akka-grpc.version>2.4.2</akka-grpc.version>
<akka-grpc.version>2.4.3</akka-grpc.version>
<scala.binary.version>2.13</scala.binary.version>
<project.encoding>UTF-8</project.encoding>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-java/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resolvers += "Akka library repository".at("https://repo.akka.io/maven")

addSbtPlugin(
"com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.4.2"
"com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.4.3"
)
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-scala/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
plugins {
id 'java'
id 'application'
id 'com.lightbend.akka.grpc.gradle' version '2.4.2'
id 'com.lightbend.akka.grpc.gradle' version '2.4.3'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version := "1.0"
scalaVersion := "2.13.13"

val akkaVersion = "2.9.3"
lazy val akkaGrpcVersion = sys.props.getOrElse("akka-grpc.version", "2.4.2")
lazy val akkaGrpcVersion = sys.props.getOrElse("akka-grpc.version", "2.4.3")

enablePlugins(AkkaGrpcPlugin)

Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-scala/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<akka.version>2.9.3</akka.version>
<akka-grpc.version>2.4.2</akka-grpc.version>
<akka-grpc.version>2.4.3</akka-grpc.version>
<scala.binary.version>2.13</scala.binary.version>
<project.encoding>UTF-8</project.encoding>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion samples/akka-grpc-quickstart-scala/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resolvers += "Akka library repository".at("https://repo.akka.io/maven")

addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.4.2")
addSbtPlugin("com.lightbend.akka.grpc" % "sbt-akka-grpc" % "2.4.3")
Loading