Skip to content

Commit

Permalink
chore: Change date and release notes for 10.5.0 (#4232)
Browse files Browse the repository at this point in the history
* chore: Change date for 10.5.0
* docs: Release notes
* build: Auto license link
  • Loading branch information
johanandren authored Feb 21, 2023
1 parent dc2368e commit c0523f1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions LICENSE.txt
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 HTTP 10.5.x
Licensed Work: Akka HTTP 10.5.0
The Licensed Work is (c) 2022 Lightbend Inc.
Additional Use Grant:
If you develop an application using a version of Play Framework that
Expand All @@ -15,7 +15,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: TBD ( 3 years after 10.5.0 release )
Change Date: 2026-02-21

Change License: Apache License, Version 2.0

Expand Down
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@ inThisBuild(Def.settings(
url("https://github.com/akka/akka-http/graphs/contributors"))
),
startYear := Some(2014),
licenses := Seq(("BUSL-1.1", url("https://raw.githubusercontent.com/akka/akka-http/main/LICENSE.txt"))), // FIXME change s/main/v10.5.0/ when released
licenses := {
val tagOrBranch =
if (version.value.endsWith("SNAPSHOT")) "main"
else "v" + version.value
Seq(("BUSL-1.1", url(s"https://raw.githubusercontent.com/akka/akka-http/${tagOrBranch}/LICENSE")))
},
description := "Akka Http: Modern, fast, asynchronous, streaming-first HTTP server and client.",
testOptions ++= Seq(
Tests.Argument(TestFrameworks.JUnit, "-q", "-v"),
Expand Down
7 changes: 7 additions & 0 deletions docs/src/main/paradox/release-notes/10.5.x.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 10.5.x release notes

## 10.5.0

Akka 10.5.0 requires Akka 2.7.0 and will not work with earlier versions of Akka.

For detailed release notes on each of the 10.5 releases of Akka HTTP, see the individual GitHub release pages: https://github.com/akka/akka-http/releases
1 change: 1 addition & 0 deletions docs/src/main/paradox/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

@@@ index

* [10.5.x](10.5.x.md)
* [10.4.x](10.4.x.md)
* [10.2.x](10.2.x.md)
* [10.1.x](10.1.x.md)
Expand Down

0 comments on commit c0523f1

Please sign in to comment.