diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 59084c0..2bb28f8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.4.0-SNAPSHOT" + ".": "1.5.0-SNAPSHOT" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 18ef377..d14af3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [1.5.0-SNAPSHOT](https://github.com/mxenabled/path-facilities/compare/v1.4.0-SNAPSHOT...v1.5.0-SNAPSHOT) (2023-01-23) + + +### Features + +* add honeybadger exception reporter facility ([cab99cd](https://github.com/mxenabled/path-facilities/commit/cab99cd38ec20bf99dbf109aec3cc4577c9ad443)) + + +### Miscellaneous Chores + +* release 1.4.0-SNAPSHOT ([f7355df](https://github.com/mxenabled/path-facilities/commit/f7355df3d6dfdcf0eb96f82187d1203da69a27c4)) +* release 1.5.0-SNAPSHOT ([0f7bbdf](https://github.com/mxenabled/path-facilities/commit/0f7bbdf72b991725a134a7707a18129d072f0826)) + ## [1.4.0-SNAPSHOT](https://github.com/mxenabled/path-facilities/compare/v1.4.0-SNAPSHOT...v1.4.0-SNAPSHOT) (2023-01-23) diff --git a/README.md b/README.md index 019e6d6..32e93ed 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ _Gradle_ ```groovy dependencies { - api platform("com.mx.path-facilities:platform:1.4.0-SNAPSHOT") + api platform("com.mx.path-facilities:platform:1.5.0-SNAPSHOT") 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:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:store-vault:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:encryption-service-vault:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:encryption-service-jasypt:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:message-broker-nats:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:fault-tolerant-executor-resilience4j:1.4.0-SNAPSHOT" - implementation "com.mx.path-facilities:exception-reporter-honeybadger:1.4.0-SNAPSHOT" + implementation "com.mx.path-facilities:store-redis:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:store-vault:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:encryption-service-vault:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:encryption-service-jasypt:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:message-broker-nats:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:fault-tolerant-executor-resilience4j:1.5.0-SNAPSHOT" + implementation "com.mx.path-facilities:exception-reporter-honeybadger:1.5.0-SNAPSHOT" } ``` diff --git a/build.gradle b/build.gradle index e9f00d6..0cdeb2f 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id "io.github.gradle-nexus.publish-plugin" version "1.1.0" } -version "1.4.0-SNAPSHOT" // x-release-please-version +version "1.5.0-SNAPSHOT" // x-release-please-version def platformProject = "platform"