From 6065d878d21a3ce80346799c4ab88c80dc7bf131 Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Sun, 2 Jun 2024 22:08:38 -0700 Subject: [PATCH] Prepare for next release. --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cf670e..c938729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [4.4.0] - 2024-06-02 + ### Added - The `SemanticVersion.parse(String coreVersion, String preReleaseIdentifier)` and @@ -88,7 +90,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Parsing versions of various formats using the `Version` class. -[unreleased]: https://github.com/cthing/versionparser/compare/4.3.0...HEAD +[unreleased]: https://github.com/cthing/versionparser/compare/4.4.0...HEAD +[4.4.0]: https://github.com/cthing/versionparser/releases/tag/4.4.0 [4.3.0]: https://github.com/cthing/versionparser/releases/tag/4.3.0 [4.2.1]: https://github.com/cthing/versionparser/releases/tag/4.2.1 [4.2.0]: https://github.com/cthing/versionparser/releases/tag/4.2.0 diff --git a/README.md b/README.md index ef08015..5ae9b3d 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,12 @@ following Maven dependency: org.cthing versionparser - 4.3.0 + 4.4.0 ``` or the following Gradle dependency: ```kotlin -implementation("org.cthing:versionparser:4.3.0") +implementation("org.cthing:versionparser:4.4.0") ``` ### Versioning Overview diff --git a/build.gradle.kts b/build.gradle.kts index 94c8ba6..24973a3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -30,7 +30,7 @@ plugins { alias(libs.plugins.versions) } -version = ProjectVersion("4.4.0", BuildType.release) +version = ProjectVersion("4.4.1", BuildType.snapshot) group = "org.cthing" description = "Parses version numbers, ranges and constraints in a variety of formats."