From 7522b405dac3cd4a724fe3ecb3bc4da61b078fc4 Mon Sep 17 00:00:00 2001 From: Baron Roberts Date: Sun, 14 Apr 2024 16:12:30 -0700 Subject: [PATCH] Update README and CHANGELOG. Prepare for next release. --- CHANGELOG.md | 5 ++++- README.md | 4 ++-- build.gradle.kts | 4 ++-- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b3e767..82042c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) @@ -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 diff --git a/README.md b/README.md index 1950774..561e72e 100644 --- a/README.md +++ b/README.md @@ -13,12 +13,12 @@ The library is available from [Maven Central](https://repo.maven.apache.org/mave org.cthing xmlwriter - 2.0.1 + 3.0.0 ``` or the following Gradle dependency: ```kotlin -implementation("org.cthing:xmlwriter:2.0.1") +implementation("org.cthing:xmlwriter:3.0.0") ``` ### Standalone Usage diff --git a/build.gradle.kts b/build.gradle.kts index 2c76c6f..6902676 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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"