From 9dd9c2bd8356dec95e86acf3feed849431c601e7 Mon Sep 17 00:00:00 2001 From: Stephen Curran Date: Wed, 24 Jul 2024 17:10:43 -0700 Subject: [PATCH] 0.11.2 Signed-off-by: Stephen Curran --- CHANGELOG.md | 8 ++++---- PUBLISHING.md | 2 +- open-api/openapi.json | 2 +- open-api/swagger.json | 2 +- pyproject.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a26796b95..feb7c5e9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,19 @@ # Aries Cloud Agent Python Changelog -## 0.11.2rc1 +## 0.11.2 A patch release to add the verification of a linkage between an inbound message and its associated connection (if any) before processing the message. -### 0.11.2rc1 Breaking Changes +### 0.11.2 Breaking Changes There are no breaking changes in this release. -#### 0.11.2rc1 Categorized List of Pull Requests +#### 0.11.2 Categorized List of Pull Requests - Dependency update and release PR - Apply security patch 0.11.x [\#3120](https://github.com/hyperledger/aries-cloudagent-python/pull/3120) [jamshale](https://github.com/jamshale) - Release management pull requests - - 0.11.2rc1 [\#3122](https://github.com/hyperledger/aries-cloudagent-python/pull/3122) [swcurran](https://github.com/swcurran) + - 0.11.2 [\#3122](https://github.com/hyperledger/aries-cloudagent-python/pull/3122) [swcurran](https://github.com/swcurran) - PRs cherry-picked into [\#3120](https://github.com/hyperledger/aries-cloudagent-python/pull/3120) from the `main` branch: - Check connection is ready in all connection required handlers [\#3095](https://github.com/hyperledger/aries-cloudagent-python/pull/3095) [jamshale](https://github.com/jamshale) diff --git a/PUBLISHING.md b/PUBLISHING.md index 28155f3180..def0fe020e 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -23,7 +23,7 @@ Once ready to do a release, create a local branch that includes the following up appropriate. `docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator --user hyperledger --project aries-cloudagent-python --output 0.11.2.md --since-tag 0.11.0 - --future-release 0.11.2rc1 --release-branch main --token ` + --future-release 0.11.2 --release-branch main --token ` - In the generated file, use only the PR list -- we don't include the list of closed issues in the Change Log. diff --git a/open-api/openapi.json b/open-api/openapi.json index faea8a76d8..6760754d27 100644 --- a/open-api/openapi.json +++ b/open-api/openapi.json @@ -2,7 +2,7 @@ "openapi" : "3.0.1", "info" : { "title" : "Aries Cloud Agent", - "version" : "v0.11.2rc1" + "version" : "v0.11.2" }, "servers" : [ { "url" : "/" diff --git a/open-api/swagger.json b/open-api/swagger.json index 476a8d997d..d3719a86e0 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v0.11.2rc1", + "version" : "v0.11.2", "title" : "Aries Cloud Agent" }, "tags" : [ { diff --git a/pyproject.toml b/pyproject.toml index 901a7712f1..22e0879715 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aries_cloudagent" -version = "0.11.2rc1" +version = "0.11.2" description = "Hyperledger Aries Cloud Agent Python (ACA-Py) is a foundation for building decentralized identity applications and services running in non-mobile environments. " authors = ["Hyperledger Aries "] license = "Apache-2.0"