-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #621 from playframework/backport-pr-599
- Loading branch information
Showing
4 changed files
with
45 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## Releasing | ||
|
||
This is released from the `main` branch from `2.2.0` forward. Unless an older version needs patching, then it must be released from the maintenance branch, for instance `2.1.x` branch. If there is no maintenance branch for the release that needs patching, create it from the tag. | ||
|
||
## Cutting the release | ||
|
||
### Requires contributor access | ||
|
||
- Check the [draft release notes](https://github.com/playframework/play-ws/releases) to see if everything is there | ||
- Wait until [main branch build finishes](https://travis-ci.com/github/playframework/play-ws/builds) after merging the last PR | ||
- Update the [draft release](https://github.com/playframework/play-ws/releases) with the next tag version (eg. `2.2.0`), title and release description | ||
- Check that Travis CI release build has executed successfully (Travis will start a [CI build](https://travis-ci.com/github/playframework/play-ws/builds) for the new tag and publish artifacts to Sonatype) | ||
|
||
### Check Maven Central | ||
|
||
- The artifacts will become visible at https://repo1.maven.org/maven2/com/typesafe/play/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,13 @@ | ||
|
||
resolvers ++= DefaultOptions.resolvers(snapshot = true) | ||
resolvers += Resolver.typesafeRepo("releases") | ||
|
||
// TODO remove when https://github.com/lightbend/mima/issues/422 is fixed | ||
resolvers += Resolver.url( | ||
"typesafe sbt-plugins", | ||
url("https://dl.bintray.com/typesafe/sbt-plugins") | ||
)(Resolver.ivyStylePatterns) | ||
|
||
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.8.1") | ||
|
||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0") | ||
|
||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10") | ||
|
||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.0.0") | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.12") | ||
|
||
addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.3") | ||
|
||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1") | ||
|
||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.3.1") | ||
|
||
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.7") | ||
|
||
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.0.0") | ||
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.2") | ||
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0") | ||
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3") | ||
addSbtPlugin("com.dwijnand" % "sbt-dynver" % "4.1.1") |