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 26, 2024
1 parent 9af6262 commit 16f87f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ The library is available from [Maven Central](https://repo.maven.apache.org/mave
<dependency>
<groupId>org.cthing</groupId>
<artifactId>xmlwriter</artifactId>
<version>3.0.0</version>
<version>4.0.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:xmlwriter:3.0.0")
implementation("org.cthing:xmlwriter:4.0.0")
```

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

Expand Down

0 comments on commit 16f87f1

Please sign in to comment.