Skip to content

Commit

Permalink
chore(testkit): prepare for testkit-support release 0.17.
Browse files Browse the repository at this point in the history
  • Loading branch information
autonomousapps committed Dec 14, 2024
1 parent 52baecc commit 7c529ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions testkit/gradle-testkit-support/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Gradle TestKit Support Changelog

# Version 0.17
* [New]: allow adding custom content to android blocks.

# Version 0.16
* [New] Support imports in build scripts.
* [New] Expose capability overload on Dependency.
Expand Down
4 changes: 2 additions & 2 deletions testkit/gradle-testkit-support/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ Release procedure for gradle-testkit-support
1. Update CHANGELOG
1. Update README if needed
1. Remove the `-SNAPSHOT` suffix from the version name in `gradle-testkit-support/build.gradle.kts`.
1. `git commit -am "Prepare for testkit-support release x.y."`
1. `git commit -am "chore(testkit): prepare for testkit-support release x.y."`
1. Publish: `./gradlew -p testkit :gradle-testkit-support:publishToMavenCentral`
(this will automatically run the tests, and won't publish if any fail)
1. `git tag -a testkit-support-x.y -m "TestKit Support version x.y."`
1. Update version number in `testkit/gradle-testkit-support/build.gradle.kts` to next snapshot version (x.y-SNAPSHOT)
1. `git commit -am "Prepare next development version of testkit-support."`
1. `git commit -am "chore(testkit): prepare next development version of testkit-support."`
1. `git push && git push --tags`
1. (Optional) Follow instructions in console output to release from Maven Central's staging repo.
This step is now automated via the `:promote` task, and should only be necessary if that task
Expand Down
2 changes: 1 addition & 1 deletion testkit/gradle-testkit-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id("com.autonomousapps.testkit")
}

version = "0.17-SNAPSHOT"
version = "0.17"

dagp {
version(version)
Expand Down

0 comments on commit 7c529ce

Please sign in to comment.