Skip to content

Commit 0a00f84

Browse files
committed
bumping version to 1.1.1
1 parent 0cadb87 commit 0a00f84

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

33
## [Unreleased]
4-
### Changed
4+
## [1.1.1] - 2024-07-05
5+
### Fixed
56
- Avoid unnecessary conversion to `OffsetDateTime` in `TextContent`.
67

78
## [1.1.0] - 2024-01-29
@@ -45,7 +46,8 @@
4546
## [1.0.0] - 2022-08-20
4647
This is the initial release of xml-objects.
4748

48-
[Unreleased]: https://github.com/xmlobjects/xml-objects/compare/v1.1.0...HEAD
49+
[Unreleased]: https://github.com/xmlobjects/xml-objects/compare/v1.1.1...HEAD
50+
[1.1.1]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.1.1
4951
[1.1.0]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.1.0
5052
[1.0.4]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.4
5153
[1.0.3]: https://github.com/xmlobjects/xml-objects/releases/tag/v1.0.3

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ xml-objects is licensed under the [Apache License, Version 2.0](http://www.apach
1111
See the `LICENSE` file for more details.
1212

1313
## Latest release
14-
The latest stable release of xml-objects is 1.1.0.
14+
The latest stable release of xml-objects is 1.1.1.
1515

1616
Download the latest xml-objects release binaries [here](https://github.com/xmlobjects/xml-objects/releases/latest).
1717
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
4444
<dependency>
4545
<groupId>org.xmlobjects</groupId>
4646
<artifactId>xml-objects</artifactId>
47-
<version>1.1.0</version>
47+
<version>1.1.1</version>
4848
</dependency>
4949
```
5050

@@ -56,6 +56,6 @@ repositories {
5656
}
5757
5858
dependencies {
59-
compile 'org.xmlobjects:xml-objects:1.1.0'
59+
compile 'org.xmlobjects:xml-objects:1.1.1'
6060
}
6161
```

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group 'org.xmlobjects'
12-
version '1.1.0'
12+
version '1.1.1'
1313
description 'A simple and lightweight XML-to-object mapping library'
1414
ext.date = new Date()
1515

0 commit comments

Comments
 (0)