diff --git a/CHANGELOG.md b/CHANGELOG.md index d580c98..5fdd2b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ Notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [1.3.5] - 2024-04-19 +- No changes. + + ## [1.3.4] - 2024-04-19 - No changes. @@ -103,8 +107,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). - Initial public release. -[unreleased]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.4...HEAD -[1.3.4]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.4...1.3.4 +[unreleased]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.5...HEAD +[1.3.5]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.4...1.3.5 +[1.3.4]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.3...1.3.4 [1.3.3]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.2...1.3.3 [1.3.2]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.1...1.3.2 [1.3.1]: https://github.com/Virtlink/commons-configuration2-jackson/compare/1.3.0...1.3.1 diff --git a/README.md b/README.md index df848ed..01d0abc 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ This project adds support for FasterXML's Jackson to [Apache Commons Configurati Add the library as a dependency to your project. In Gradle, add to your `dependencies` block ```groovy -implementation 'com.virtlink.commons:commons-configuration2-jackson:1.3.4' +implementation 'com.virtlink.commons:commons-configuration2-jackson:1.3.5' ``` Or in Gradle Kotlin DSL, add to your `dependencies` block ```kotlin -implementation("com.virtlink.commons:commons-configuration2-jackson:1.3.4") +implementation("com.virtlink.commons:commons-configuration2-jackson:1.3.5") ``` In Maven, add to your `` tag @@ -27,7 +27,7 @@ In Maven, add to your `` tag com.virtlink.commons commons-configuration2-jackson - 1.3.4 + 1.3.5 ```