diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 895bf0e..d4f6f29 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.0" + ".": "3.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index bb4b897..ce74176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [3.0.0](https://github.com/mxenabled/path-facilities/compare/v2.0.0...v3.0.0) (2023-03-29) + + +### ⚠ BREAKING CHANGES + +* rename store redis connectionTimeout to timeout +* remove spring integration of honeybadger facility +* remove backward compatibility for durations - store-redis +* remove backward compatibility for durations - store-vault +* remove backward compatibility for durations - message-broker-nats +* standardize package structures +* standardize package structures + +### Bug Fixes + +* standardize package structures ([7d32dc0](https://github.com/mxenabled/path-facilities/commit/7d32dc0168098693cf4fad24342a296b069fc2e1)) +* standardize package structures ([e15c3ae](https://github.com/mxenabled/path-facilities/commit/e15c3ae8af831ee8a908144ef9c8dcb14744998a)) + + +### Code Refactoring + +* remove backward compatibility for durations - message-broker-nats ([b77a678](https://github.com/mxenabled/path-facilities/commit/b77a678dd697539bccca736ff019c936e2d9b427)) +* remove backward compatibility for durations - store-redis ([4900874](https://github.com/mxenabled/path-facilities/commit/49008748a453f931fe0370253ae154c8027f7a4b)) +* remove backward compatibility for durations - store-vault ([0b3e305](https://github.com/mxenabled/path-facilities/commit/0b3e305d17af976bde614156b06d1dd55135cea9)) +* remove spring integration of honeybadger facility ([80a5d62](https://github.com/mxenabled/path-facilities/commit/80a5d62a0675556b8ab6caed20352ddeabdbae9d)) +* rename store redis connectionTimeout to timeout ([a204f47](https://github.com/mxenabled/path-facilities/commit/a204f47bdcaf5d8df84180a0964cf695aadff226)) + ## [2.0.0](https://github.com/mxenabled/path-facilities/compare/v1.5.2...v2.0.0) (2023-03-06) diff --git a/README.md b/README.md index a0d4ec6..2caabb7 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ _Gradle_ ```groovy dependencies { - api platform("com.mx.path-facilities:platform:2.0.0") + api platform("com.mx.path-facilities:platform:3.0.0") implementation "com.mx.path-facilities:store-redis" implementation "com.mx.path-facilities:store-vault" @@ -41,13 +41,13 @@ _Gradle_ ```groovy dependencies { - implementation "com.mx.path-facilities:store-redis:2.0.0" - implementation "com.mx.path-facilities:store-vault:2.0.0" - implementation "com.mx.path-facilities:encryption-service-vault:2.0.0" - implementation "com.mx.path-facilities:encryption-service-jasypt:2.0.0" - implementation "com.mx.path-facilities:message-broker-nats:2.0.0" - implementation "com.mx.path-facilities:fault-tolerant-executor-resilience4j:2.0.0" - implementation "com.mx.path-facilities:exception-reporter-honeybadger:2.0.0" + implementation "com.mx.path-facilities:store-redis:3.0.0" + implementation "com.mx.path-facilities:store-vault:3.0.0" + implementation "com.mx.path-facilities:encryption-service-vault:3.0.0" + implementation "com.mx.path-facilities:encryption-service-jasypt:3.0.0" + implementation "com.mx.path-facilities:message-broker-nats:3.0.0" + implementation "com.mx.path-facilities:fault-tolerant-executor-resilience4j:3.0.0" + implementation "com.mx.path-facilities:exception-reporter-honeybadger:3.0.0" } ``` diff --git a/build.gradle b/build.gradle index acae49b..9d06600 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id "io.github.gradle-nexus.publish-plugin" version "1.1.0" } -version "3.0.0-alpha.1" // x-release-please-version +version "3.0.0" // x-release-please-version def platformProject = "platform"