From 8e107c9ef6ae10cff82ccab6579bad75b51defac Mon Sep 17 00:00:00 2001 From: Claus Nagel Date: Mon, 15 Jul 2024 09:38:32 +0200 Subject: [PATCH] bumping version to 1.1.1 --- CHANGELOG.md | 7 ++++++- README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bda7fa6..a80ebff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [1.1.1] - 2024-07-15 +### Changed +- Updated xml-objects to 1.1.1. + ## [1.1.0] - 2024-01-29 ### Changed - **Breaking:** Java 17 is now the minimum required version for using xal-objects. @@ -27,7 +31,8 @@ ## [1.0.0] - 2022-08-20 This is the initial release of xal-objects. -[Unreleased]: https://github.com/xmlobjects/xal-objects/compare/v1.1.0...HEAD +[Unreleased]: https://github.com/xmlobjects/xal-objects/compare/v1.1.1...HEAD +[1.1.0]: https://github.com/xmlobjects/xal-objects/releases/tag/v1.1.1 [1.1.0]: https://github.com/xmlobjects/xal-objects/releases/tag/v1.1.0 [1.0.4]: https://github.com/xmlobjects/xal-objects/releases/tag/v1.0.4 [1.0.3]: https://github.com/xmlobjects/xal-objects/releases/tag/v1.0.3 diff --git a/README.md b/README.md index 31791e3..7e2c836 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ xal-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 xal-objects is 1.1.0. +The latest stable release of xal-objects is 1.1.1. Download the latest xal-objects release binaries [here](https://github.com/xmlobjects/xal-objects/releases/latest). Previous releases are available from the [releases section](https://github.com/xmlobjects/xal-objects/releases). @@ -44,7 +44,7 @@ project with Maven, add the following code to your `pom.xml`. You may need to ad org.xmlobjects.xal xal-objects - 1.1.0 + 1.1.1 ``` @@ -56,6 +56,6 @@ repositories { } dependencies { - compile 'org.xmlobjects.xal:xal-objects:1.1.0' + compile 'org.xmlobjects.xal:xal-objects:1.1.1' } ``` diff --git a/build.gradle b/build.gradle index dc5ab41..610da1a 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } group 'org.xmlobjects.xal' -version '1.1.0' +version '1.1.1' description 'A Java mapping for the OASIS eXtensible Address Language (xAL)' ext.date = new Date()