From 931ae71fb3fc0278e05fc06205902fbe4435e83f Mon Sep 17 00:00:00 2001 From: "Daniel A. A. Pelsmaeker" <647530+Virtlink@users.noreply.github.com> Date: Mon, 20 Feb 2023 14:42:38 +0100 Subject: [PATCH] Update changelog --- CHANGELOG.md | 4 ++++ README.md | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff02bfd..7e95263 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,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.0.0/). +## [1.2.0] - 2023-02-20 + +- Update dependencies to their latest versions. + ## [1.1.0] - 2023-01-31 - Update dependencies to their latest versions. diff --git a/README.md b/README.md index 144a781..be65a5c 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.1.0' +implementation 'com.virtlink.commons:commons-configuration2-jackson:1.2.0' ``` Or in Gradle Kotlin DSL, add to your `dependencies` block ```kotlin -implementation("com.virtlink.commons:commons-configuration2-jackson:1.1.0") +implementation("com.virtlink.commons:commons-configuration2-jackson:1.2.0") ``` In Maven, add to your `` tag @@ -27,7 +27,7 @@ In Maven, add to your `` tag com.virtlink.commons commons-configuration2-jackson - 1.1.0 + 1.2.0 ```