From 16f87f188f9a51437a1caaaaacb7c924a13f575a Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Fri, 25 Oct 2024 18:08:58 -0700 Subject: [PATCH] Prepare for next release. --- CHANGELOG.md | 8 ++++++-- README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d913bb8..9c08247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [4.0.0] - 2024-10-25 + ### Changed -- Use cthing-projectversion library `ProjectVersion` object for project version +- The library has been migrated from JSR 305 to [JSpecify](https://jspecify.dev/) for `null` checking +- The build now uses the [dependency-analysis-gradle-plugin](https://github.com/autonomousapps/dependency-analysis-gradle-plugin) ## [3.0.0] - 2024-04-14 @@ -55,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First source code release -[unreleased]: https://github.com/cthing/xmlwriter/compare/3.0.0...HEAD +[unreleased]: https://github.com/cthing/xmlwriter/compare/4.0.0...HEAD +[4.0.0]: https://github.com/cthing/xmlwriter/releases/tag/4.0.0 [3.0.0]: https://github.com/cthing/xmlwriter/releases/tag/3.0.0 [2.0.1]: https://github.com/cthing/xmlwriter/releases/tag/2.0.1 [2.0.0]: https://github.com/cthing/xmlwriter/releases/tag/2.0.0 diff --git a/README.md b/README.md index 9fa5820..a15d947 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ The library is available from [Maven Central](https://repo.maven.apache.org/mave org.cthing xmlwriter - 3.0.0 + 4.0.0 ``` or the following Gradle dependency: ```kotlin -implementation("org.cthing:xmlwriter:3.0.0") +implementation("org.cthing:xmlwriter:4.0.0") ``` ### Standalone Usage diff --git a/build.gradle.kts b/build.gradle.kts index b75954a..660261d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,7 +28,7 @@ plugins { alias(libs.plugins.versions) } -version = ProjectVersion("4.0.0", BuildType.release) +version = ProjectVersion("4.0.1", BuildType.snapshot) group = "org.cthing" description = "A simple yet highly configurable XML writing library."