Skip to content

Commit

Permalink
bumping version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Jan 29, 2024
1 parent 77adbd2 commit ea9d461
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand All @@ -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.

Expand All @@ -44,7 +44,7 @@ project with Maven, add the following code to your `pom.xml`. You may need to ad
<dependency>
<groupId>org.xmlobjects</groupId>
<artifactId>xml-objects</artifactId>
<version>1.0.4</version>
<version>1.1.0</version>
</dependency>
```

Expand All @@ -56,6 +56,6 @@ repositories {
}
dependencies {
compile 'org.xmlobjects:xml-objects:1.0.4'
compile 'org.xmlobjects:xml-objects:1.1.0'
}
```
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand All @@ -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 {
Expand Down

0 comments on commit ea9d461

Please sign in to comment.