diff --git a/CHANGELOG.md b/CHANGELOG.md index 65a4678e9..6a10844f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [2.2.1](https://github.com/input-output-hk/atala-prism/compare/v2.2.0...v2.2.1) (2023-07-27) + + +### Bug Fixes + +* add string secret for consumers to allow keys to be generated ([#825](https://github.com/input-output-hk/atala-prism/issues/825)) ([1f6d85f](https://github.com/input-output-hk/atala-prism/commit/1f6d85f8a8027fe0e400c9a399fe14f102889cd4)) + # [2.2.0](https://github.com/input-output-hk/atala-prism/compare/v2.1.5...v2.2.0) (2023-07-25) diff --git a/infrastructure/charts/node/Chart.yaml b/infrastructure/charts/node/Chart.yaml index 619d19e5a..6418a5f11 100644 --- a/infrastructure/charts/node/Chart.yaml +++ b/infrastructure/charts/node/Chart.yaml @@ -18,5 +18,5 @@ version: 0.1.0 # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "2.2.0" +appVersion: "2.2.1" dependencies: [] diff --git a/package-lock.json b/package-lock.json index 90353cf22..d350551e9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "prism-node", - "version": "2.2.0", + "version": "2.2.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "prism-node", - "version": "2.2.0", + "version": "2.2.1", "devDependencies": { "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", diff --git a/package.json b/package.json index 4d6d042e5..bab7e5c57 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "prism-node", - "version": "2.2.0", + "version": "2.2.1", "engines": { "node": ">=16.13.0" }, diff --git a/version.sbt b/version.sbt index 551dbd9ad..8fec68377 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "2.2.0-SNAPSHOT" +ThisBuild / version := "2.2.1-SNAPSHOT"