From ea9d4616bd072ca83cfe98b62b8da8d5a73f4541 Mon Sep 17 00:00:00 2001 From: Claus Nagel Date: Mon, 29 Jan 2024 10:49:05 +0100 Subject: [PATCH] bumping version to 1.1.0 --- CHANGELOG.md | 5 ++++- README.md | 8 ++++---- build.gradle | 6 +++--- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 293cd87..6c9ad62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [1.1.0] - 2024-01-29 ### Changed - **Breaking:** Java 17 is now the minimum required version for using xml-objects. @@ -41,7 +43,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.4...HEAD +[Unreleased]: https://github.com/xmlobjects/xml-objects/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.1.0 [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 diff --git a/README.md b/README.md index 74ed4d2..246cc21 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.4. +The latest stable release of xml-objects is 1.1.0. 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). @@ -22,7 +22,7 @@ Previous releases are available from the [releases section](https://github.com/x * To propose a new feature create a GitHub issue and open a discussion. ## Building -xml-objects requires Java 11 or higher. The project uses [Gradle](https://gradle.org/) as build system. To build the +xml-objects requires Java 17 or higher. The project uses [Gradle](https://gradle.org/) as build system. To build the library from source, clone the repository to your local machine and run the following command from the root of the repository. @@ -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.4 + 1.1.0 ``` @@ -56,6 +56,6 @@ repositories { } dependencies { - compile 'org.xmlobjects:xml-objects:1.0.4' + compile 'org.xmlobjects:xml-objects:1.1.0' } ``` diff --git a/build.gradle b/build.gradle index 42209a4..39da4c2 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ plugins { } group 'org.xmlobjects' -version '1.1.0-SNAPSHOT' +version '1.1.0' description 'A simple and lightweight XML-to-object mapping library' ext.date = new Date() @@ -34,8 +34,8 @@ repositories { dependencies { api 'org.glassfish.jaxb:xsom:4.0.4' - api 'org.xmlobjects:classindex:3.13.0-SNAPSHOT' - annotationProcessor 'org.xmlobjects:classindex:3.13.0-SNAPSHOT' + api 'org.xmlobjects:classindex:3.13.0' + annotationProcessor 'org.xmlobjects:classindex:3.13.0' } javadoc {