From 643ba13df46b62a1885f25247ac56d23cf2c0596 Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Sat, 26 Oct 2024 11:09:51 -0700 Subject: [PATCH] Prepare for next release. --- CHANGELOG.md | 7 ++++++- README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6d2e2f..7ee5faa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [2.0.0] - 2024-10-26 + +- The plugin has been migrated from JSR 305 to [JSpecify](https://jspecify.dev/) for `null` checking + ## [1.0.1] - 2024-06-21 ### Changed @@ -19,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First release -[unreleased]: https://github.com/cthing/gradle-cthing-versioning/compare/1.0.1...HEAD +[unreleased]: https://github.com/cthing/gradle-cthing-versioning/compare/2.0.0...HEAD +[2.0.0]: https://github.com/cthing/gradle-cthing-versioning/releases/tag/2.0.0 [1.0.1]: https://github.com/cthing/gradle-cthing-versioning/releases/tag/1.0.1 [1.0.0]: https://github.com/cthing/gradle-cthing-versioning/releases/tag/1.0.0 diff --git a/README.md b/README.md index f45b010..e91d7b5 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ buildscript { } plugins { - id("org.cthing.cthing-versioning") version "1.0.1" + id("org.cthing.cthing-versioning") version "2.0.0" } ``` @@ -33,7 +33,7 @@ The following Gradle and Java versions are supported: | Plugin Version | Gradle Version | Minimum Java Version | |----------------|----------------|----------------------| -| 1.0.0+ | 8.0+ | 17 | +| 2.0.0+ | 8.0+ | 17 | ## Building diff --git a/build.gradle.kts b/build.gradle.kts index 57750e8..e491c6d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,7 +30,7 @@ buildscript { } } -version = ProjectVersion("2.0.0", BuildType.release) +version = ProjectVersion("2.0.1", BuildType.snapshot) group = "org.cthing" description = "A Gradle plugin that establishes the versioning scheme for C Thing Software projects."