Skip to content

Commit

Permalink
Update README and CHANGELOG. Prepare for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
baron1405 committed Apr 14, 2024
1 parent ed3ec77 commit 7522b40
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 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]

## [3.0.0] - 2024-04-14

### Added

- XML characters outside the [Unicode Basic Multilingual Plane](https://en.wikipedia.org/wiki/Plane_(Unicode))
Expand Down Expand Up @@ -49,6 +51,7 @@ 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/2.0.1...HEAD
[unreleased]: https://github.com/cthing/xmlwriter/compare/3.0.0...HEAD
[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>2.0.1</version>
<version>3.0.0</version>
</dependency>
```
or the following Gradle dependency:
```kotlin
implementation("org.cthing:xmlwriter:2.0.1")
implementation("org.cthing:xmlwriter:3.0.0")
```

### Standalone Usage
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ plugins {
alias(libs.plugins.versions)
}

val baseVersion = "3.0.0"
val isSnapshot = false
val baseVersion = "3.0.1"
val isSnapshot = true

val isCIServer = System.getenv("CTHING_CI") != null
val buildNumber = if (isCIServer) System.currentTimeMillis().toString() else "0"
Expand Down

0 comments on commit 7522b40

Please sign in to comment.