diff --git a/CHANGELOG.md b/CHANGELOG.md index 04cfa13493..47c858f1c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Aries Cloud Agent Python Changelog -## 1.3.4rc0 +## 1.3.4 -### Mar 25, 2026 +### Apr 1, 2026 This patch is being released to address another issue in the migration of the `askar` wallet-type to `askar-anoncreds`, and to get a security fix in a dependency (jsonpath-ng). As well, an interop issue with Credo-TS and the handling of JWS was added. @@ -26,6 +26,7 @@ There are no breaking changes in this release. - chore: bump jsonpath-ng to 1.8.0 and fix full_path format [\#4083](https://github.com/openwallet-foundation/acapy/pull/4083) [jamshale](https://github.com/jamshale) - Release management pull requests: + - 1.3.4 [\#4108](https://github.com/openwallet-foundation/acapy/pull/4108) [swcurran](https://github.com/swcurran) - 1.3.4rc0 [\#4100](https://github.com/openwallet-foundation/acapy/pull/4100) [swcurran](https://github.com/swcurran) ## 1.3.3 diff --git a/PUBLISHING.md b/PUBLISHING.md index 8c0ace51eb..026e8b1026 100644 --- a/PUBLISHING.md +++ b/PUBLISHING.md @@ -1,12 +1,12 @@ # How to Publish a New Version -The code to be published should be in the `main` branch. Make sure that all the PRs to go in the release are +The code to be published should be in the `1.3.lts` branch. Make sure that all the PRs to go in the release are merged, and decide on the release tag. Should it be a release candidate or the final tag, and should it be a major, minor or patch release, per [semver](https://semver.org/) rules. Once ready to do a release, create a local branch that includes the following updates: -1. Create a local PR branch from an updated `main` branch, e.g. "1.3.4". +1. Create a local PR branch from an updated `1.3.lts` branch, e.g. "1.3.4". 2. See if there are any Document Site `mkdocs` changes needed. Run the script `./scripts/prepmkdocs.sh; mkdocs`. Watch the log, noting particularly if diff --git a/README.md b/README.md index ffe45f9989..36991b6187 100644 --- a/README.md +++ b/README.md @@ -62,11 +62,11 @@ supported version within that release series. **Current LTS releases:** -- Release [1.3](https://github.com/openwallet-foundation/acapy/releases/tag/1.3.3) **Current LTS Release** -- Release [1.2](https://github.com/openwallet-foundation/acapy/releases/tag/1.2.6) **End of Life: April 2026** +- Release [1.3](https://github.com/openwallet-foundation/acapy/releases/tag/1.3.4) **Current LTS Release** **Past LTS releases:** +- Release [1.2](https://github.com/openwallet-foundation/acapy/releases/tag/1.2.7) **End of Life: April 2026** - Release [0.12](https://github.com/openwallet-foundation/acapy/releases/tag/0.12.8) **End of Life: October 2025** - Release [0.11](https://github.com/openwallet-foundation/acapy/releases/tag/0.11.3) **End of Life: January 2025** diff --git a/docs/features/SupportedRFCs.md b/docs/features/SupportedRFCs.md index 895136a6a2..c2b2bdeba9 100644 --- a/docs/features/SupportedRFCs.md +++ b/docs/features/SupportedRFCs.md @@ -8,7 +8,7 @@ ACA-Py or the repository `main` branch. Reminders (and PRs!) to update this page welcome! If you have any questions, please contact us on the #aries channel on [OpenWallet Foundation Discord](https://discord.gg/openwallet-foundation) or through an issue in this repo. -**Last Update**: 2026-03-25, Release 1.3.4rc0 +**Last Update**: 2026-04-01, Release 1.3.4 > The checklist version of this document was created as a joint effort > between [Northern Block](https://northernblock.io/), [Animo Solutions](https://animo.id/) and the Ontario government, on behalf of the Ontario government. diff --git a/open-api/openapi.json b/open-api/openapi.json index 4838fce778..b441bce7f0 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" : "v1.3.4rc0" + "version" : "v1.3.4" }, "servers" : [ { "url" : "/" diff --git a/open-api/swagger.json b/open-api/swagger.json index 77d8200a00..f94e4c9351 100644 --- a/open-api/swagger.json +++ b/open-api/swagger.json @@ -1,7 +1,7 @@ { "swagger" : "2.0", "info" : { - "version" : "v1.3.4rc0", + "version" : "v1.3.4", "title" : "Aries Cloud Agent" }, "tags" : [ { diff --git a/pyproject.toml b/pyproject.toml index fa45447c72..4b0f58cb4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "acapy_agent" -version = "1.3.4rc0" +version = "1.3.4" description = "(ACA-Py) A Cloud Agent Python is a foundation for building decentralized identity applications and services running in non-mobile environments. " authors = [] license = "Apache-2.0"