From 2890c8326ae2157b8563f056c593c6e4d8f20a18 Mon Sep 17 00:00:00 2001 From: ymind Date: Fri, 25 Nov 2022 10:25:03 +0800 Subject: [PATCH] release: 0.5.4 --- CHANGELOG.md | 14 ++++++++++++++ CHANGELOG.zh-cn.md | 14 ++++++++++++++ build.gradle.kts | 2 +- 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb7afd5..42e9583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.5.4 (2022-11-25) + +### Chores + +- **deps**: bumped jackson-databind version to 2.14.1 ([a6ea1cdf](https://github.com/ymind/jacksync/commit/a6ea1cdf49d95723d6ec8a6618e21171edc57b5d)) + + +### Build System + +- **gradle:plugin**: bumped com.github.ben-manes.versions version to 0.44.0 ([6659b74d](https://github.com/ymind/jacksync/commit/6659b74d1fd7fab5e6c8e9cf2e1d13272d68fef6)) +- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.22.0 ([3e282702](https://github.com/ymind/jacksync/commit/3e2827028f5ba02d6f7cf167b8e1f3c3d5eeae85)) +- **kotlin**: bumped kotlin version to 1.7.21 ([4bf0eba4](https://github.com/ymind/jacksync/commit/4bf0eba4b0cc6b711568753d9186b3ba89b9143e)) + + ## 0.5.0 (2022-10-24) ### Code Refactoring diff --git a/CHANGELOG.zh-cn.md b/CHANGELOG.zh-cn.md index 96e7b0c..897e981 100644 --- a/CHANGELOG.zh-cn.md +++ b/CHANGELOG.zh-cn.md @@ -1,5 +1,19 @@ # 更新日志 +## 0.5.4 (2022-11-25) + +### Chores + +- **deps**: bumped jackson-databind version to 2.14.1 ([a6ea1cdf](https://github.com/ymind/jacksync/commit/a6ea1cdf49d95723d6ec8a6618e21171edc57b5d)) + + +### Build System + +- **gradle:plugin**: bumped com.github.ben-manes.versions version to 0.44.0 ([6659b74d](https://github.com/ymind/jacksync/commit/6659b74d1fd7fab5e6c8e9cf2e1d13272d68fef6)) +- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.22.0 ([3e282702](https://github.com/ymind/jacksync/commit/3e2827028f5ba02d6f7cf167b8e1f3c3d5eeae85)) +- **kotlin**: bumped kotlin version to 1.7.21 ([4bf0eba4](https://github.com/ymind/jacksync/commit/4bf0eba4b0cc6b711568753d9186b3ba89b9143e)) + + ## 0.5.0 (2022-10-24) ### Code Refactoring diff --git a/build.gradle.kts b/build.gradle.kts index 166da53..aab9913 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,7 +22,7 @@ plugins { } group = "team.yi.jacksync" -version = "0.5.0" +version = "0.5.4" description = "Jacksync provides a library for synchronization by producing and applying a JSON patches to Java objects. Inspired by RFC 6902 (JSON Patch) and RFC 7386 (JSON Merge Patch) written in Java, which uses Jackson at its core." java {