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 Oct 25, 2024
1 parent c0f84d7 commit 7a83606
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [5.0.0] - 2024-10-25

### Changed

- The library has been migrated from JSR 305 to [JSpecify](https://jspecify.dev/) for `null` checking

## [4.5.0] - 2024-06-29

### Added
Expand Down Expand Up @@ -105,7 +111,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.5.0...HEAD
[unreleased]: https://github.com/cthing/versionparser/compare/5.0.0...HEAD
[5.0.0]: https://github.com/cthing/versionparser/releases/tag/5.0.0
[4.5.0]: https://github.com/cthing/versionparser/releases/tag/4.5.0
[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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ following Maven dependency:
<dependency>
<groupId>org.cthing</groupId>
<artifactId>versionparser</artifactId>
<version>4.5.0</version>
<version>5.0.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:versionparser:4.5.0")
implementation("org.cthing:versionparser:5.0.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("5.0.0", BuildType.release)
version = ProjectVersion("5.0.1", BuildType.snapshot)
group = "org.cthing"
description = "Parses version numbers, ranges and constraints in a variety of formats."

Expand Down

0 comments on commit 7a83606

Please sign in to comment.