diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e728db..a414622 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.8.0] - unreleased +## [0.7.1] - 2024-09-01 + +- [PR #26](https://github.com/itsallcode/simple-jdbc/pull/26): Update dependencies + ## [0.7.0] - 2024-05-04 - [PR #22](https://github.com/itsallcode/simple-jdbc/pull/22): Added `module-info.java` diff --git a/README.md b/README.md index 722f0a4..675fafa 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Add dependency to your gradle project: ```groovy dependencies { - implementation 'org.itsallcode:simple-jdbc:0.7.0' + implementation 'org.itsallcode:simple-jdbc:0.7.1' } ``` diff --git a/build.gradle b/build.gradle index 20685ce..8677cd3 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ plugins { } group 'org.itsallcode' -version = '0.7.0' +version = '0.7.1' dependencies { }