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 1fa3512 commit c2e0b6f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [unreleased]

## [2.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
- Use the [cthing-projectversion](https://github.com/cthing/cthing-projectversion) library
[ProjectVersion](https://javadoc.io/doc/org.cthing/cthing-projectversion/latest/org/cthing/projectversion/ProjectVersion.html)
object for the project version

## [1.0.0] - 2024-04-14

### Added

- First release

[unreleased]: https://github.com/cthing/escapers/compare/1.0.0...HEAD
[unreleased]: https://github.com/cthing/escapers/compare/2.0.0...HEAD
[2.0.0]: https://github.com/cthing/escapers/releases/tag/2.0.0
[1.0.0]: https://github.com/cthing/escapers/releases/tag/1.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 @@ following Maven dependency:
<dependency>
<groupId>org.cthing</groupId>
<artifactId>escapers</artifactId>
<version>1.0.0</version>
<version>2.0.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:escapers:1.0.0")
implementation("org.cthing:escapers:2.0.0")
```

Escaping for each supported language follows the pattern:
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("2.0.0", BuildType.release)
version = ProjectVersion("2.0.1", BuildType.snapshot)
group = "org.cthing"
description = "A Java library for escaping strings for use in various languages (e.g. XML)."

Expand Down

0 comments on commit c2e0b6f

Please sign in to comment.