Skip to content

Commit

Permalink
Prepare for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Jun 3, 2024
1 parent 8c400d8 commit 6065d87
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ following Maven dependency:
<dependency>
<groupId>org.cthing</groupId>
<artifactId>versionparser</artifactId>
<version>4.3.0</version>
<version>4.4.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:versionparser:4.3.0")
implementation("org.cthing:versionparser:4.4.0")
```

### Versioning Overview
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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."

Expand Down

0 comments on commit 6065d87

Please sign in to comment.