diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c0d99e9..a9860165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# [0.11.0](https://github.com/input-output-hk/atala-prism-mediator/compare/prism-mediator-v0.10.2...prism-mediator-v0.11.0) (2023-11-10) + + +### Bug Fixes + +* incorrect body of the message results in problem report ([#161](https://github.com/input-output-hk/atala-prism-mediator/issues/161)) ([6d8b9b8](https://github.com/input-output-hk/atala-prism-mediator/commit/6d8b9b8493f32d27c31c44c170268cdd3cb5170b)) + + +### Features + +* Return 202 HTTP code (for DID Comm) ([#162](https://github.com/input-output-hk/atala-prism-mediator/issues/162)) ([50185d3](https://github.com/input-output-hk/atala-prism-mediator/commit/50185d379d08949597479db8d8fd9d53526fd82a)), closes [#160](https://github.com/input-output-hk/atala-prism-mediator/issues/160) +* Support protocol discover-features 2.0 ([#154](https://github.com/input-output-hk/atala-prism-mediator/issues/154)) ([9220858](https://github.com/input-output-hk/atala-prism-mediator/commit/9220858111d992c099aff9e41cce90d7d06f0235)) + ## [0.10.2](https://github.com/input-output-hk/atala-prism-mediator/compare/prism-mediator-v0.10.1...prism-mediator-v0.10.2) (2023-11-06) diff --git a/infrastructure/charts/mediator/Chart.yaml b/infrastructure/charts/mediator/Chart.yaml index f13d2b04..d3ec3366 100644 --- a/infrastructure/charts/mediator/Chart.yaml +++ b/infrastructure/charts/mediator/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: "0.10.2" +appVersion: "0.11.0" dependencies: [] diff --git a/package-lock.json b/package-lock.json index 3cdb5911..83de276a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "atala-prism-mediator", - "version": "0.10.2", + "version": "0.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "atala-prism-mediator", - "version": "0.10.2", + "version": "0.11.0", "devDependencies": { "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", diff --git a/package.json b/package.json index 91907a8e..28fbe200 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "atala-prism-mediator", - "version": "0.10.2", + "version": "0.11.0", "engines": { "node": ">=16.13.0" }, diff --git a/version.sbt b/version.sbt index e1b9bbdc..349c2b4f 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "0.10.2-SNAPSHOT" +ThisBuild / version := "0.11.0-SNAPSHOT"