From 81fba65e569e04df8a09ba9b13bcba16ad8e48d8 Mon Sep 17 00:00:00 2001 From: Claus Nagel Date: Fri, 3 Nov 2023 10:06:37 +0100 Subject: [PATCH] updated readme and changelog --- CHANGELOG.md | 5 ++++- README.md | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b4f5a6..14cd4e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [1.0.4] - 2023-11-03 ### Added - Added `getEncoding` method to `XMLReader`, which returns the input encoding if known or null if unknown. - Added methods to build default factories to `SecureXMLProcessors` and `XMLReaderFactory`. @@ -33,7 +35,8 @@ ## [1.0.0] - 2022-08-20 This is the initial release of xml-objects. -[Unreleased]: https://github.com/xmlobjects/xml-objects/compare/v1.0.3...HEAD +[Unreleased]: https://github.com/xmlobjects/xml-objects/compare/v1.0.4...HEAD +[1.0.4]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.4 [1.0.3]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.3 [1.0.2]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.2 [1.0.1]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.1 diff --git a/README.md b/README.md index a4a4fc1..74ed4d2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ xml-objects is licensed under the [Apache License, Version 2.0](http://www.apach See the `LICENSE` file for more details. ## Latest release -The latest stable release of xml-objects is 1.0.3. +The latest stable release of xml-objects is 1.0.4. Download the latest xml-objects release binaries [here](https://github.com/xmlobjects/xml-objects/releases/latest). Previous releases are available from the [releases section](https://github.com/xmlobjects/xml-objects/releases). @@ -44,7 +44,7 @@ project with Maven, add the following code to your `pom.xml`. You may need to ad org.xmlobjects xml-objects - 1.0.3 + 1.0.4 ``` @@ -56,6 +56,6 @@ repositories { } dependencies { - compile 'org.xmlobjects:xml-objects:1.0.3' + compile 'org.xmlobjects:xml-objects:1.0.4' } ```