Skip to content

Commit 0d0fce4

Browse files
committed
0.10.2
Signed-off-by: Stephen Curran <swcurran@gmail.com>
1 parent a22fe5a commit 0d0fce4

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# 0.10.2-rc0
1+
# 0.10.2
22

3-
## September 7, 2023
3+
## September 22, 2023
44

5-
Release 0.10.2 is a patch release for 0.10.1 that addresses two specific regressions found
5+
Release 0.10.2 is a patch release for 0.10.1 that addresses three specific regressions found
66
in deploying Release 0.10.1. The regressions are to fix:
77

88
- An ACA-Py instance upgraded to 0.10.1 that had an existing connection to another Aries agent
@@ -13,20 +13,27 @@ for this scenario and needed a tweak to work ([Issue \#2474], [PR \#2475]).
1313
- The "fix revocation registry" endpoint used to fix scenarios an Issuer's local revocation registry
1414
state is out of sync with the ledger was broken by some code being added to support a single
1515
ACA-Py instance writing to different ledgers ([Issue \#2477], [PR \#2480]).
16+
- The version of the [PyDID] library we were using did not handle some
17+
unexpected DID resolution use cases encountered with mediators. The PyDID
18+
library version dependency was updated in [PR \#2500].
1619

1720
[Issue \#2474]: https://github.com/hyperledger/aries-cloudagent-python/issue/2474
1821
[PR \#2475]: https://github.com/hyperledger/aries-cloudagent-python/pull/2476
1922
[Issue \#2477]: https://github.com/hyperledger/aries-cloudagent-python/issue/2477
2023
[PR \#2480]: https://github.com/hyperledger/aries-cloudagent-python/pull/2480
24+
[PyDID]: https://github.com/sicpa-dlab/pydid
25+
[PR \#2500]: https://github.com/hyperledger/aries-cloudagent-python/pull/2500
2126

22-
### 0.10.0 Categorized List of Pull Requests
27+
### 0.10.2 Categorized List of Pull Requests
2328

2429
- DID Handling and Connection Establishment Updates/Fixes
2530
- LegacyPeerDIDResolver: erroneously assigning same ID to multiple services [\#2475](https://github.com/hyperledger/aries-cloudagent-python/pull/2475) [dbluhm](https://github.com/dbluhm)
31+
- fix: update pydid [\#2500](https://github.com/hyperledger/aries-cloudagent-python/pull/2500) [dbluhm](https://github.com/dbluhm)
2632
- Credential Exchange (Issue, Present) Updates
2733
- Bugfix: Issue with write ledger pool when performing Accumulator sync [\#2480](https://github.com/hyperledger/aries-cloudagent-python/pull/2480) [shaangill025](https://github.com/shaangill025)
2834
- Release management pull requests
29-
- 0.10.2 [\#2484](https://github.com/hyperledger/aries-cloudagent-python/pull/2484) [swcurran](https://github.com/swcurran)
35+
- 0.10.2 [\#2509](https://github.com/hyperledger/aries-cloudagent-python/pull/2509) [swcurran](https://github.com/swcurran)
36+
- 0.10.2-rc0 [\#2484](https://github.com/hyperledger/aries-cloudagent-python/pull/2484) [swcurran](https://github.com/swcurran)
3037
- 0.10.2 Patch Release - fix issue #2475, #2477 [\#2482](https://github.com/hyperledger/aries-cloudagent-python/pull/2480) [shaangill025](https://github.com/shaangill025)
3138

3239
# 0.10.1
@@ -91,7 +98,7 @@ deleted from ACA-Py storage.
9198

9299
[\#2352]: https://github.com/hyperledger/aries-cloudagent-python/pull/2352
93100

94-
### 0.10.0 Categorized List of Pull Requests
101+
### 0.10.1 Categorized List of Pull Requests
95102

96103
- DIDComm Messaging Improvements/Fixes
97104
- fix: outbound send status missing on path [\#2393](https://github.com/hyperledger/aries-cloudagent-python/pull/2393) [dbluhm](https://github.com/dbluhm)
@@ -143,7 +150,7 @@ deleted from ACA-Py storage.
143150

144151
## August 29, 2023
145152

146-
Release 0.10.1 has the same contents as 0.10.0. An error on PyPi prevented the
153+
Release 0.10.0 has the same contents as 0.10.1. An error on PyPi prevented the
147154
0.10.0 release from being properly uploaded because of an existing file of the
148155
same name. We immediately released 0.10.1 as a replacement.
149156

aries_cloudagent/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Library version information."""
22

3-
__version__ = "0.10.2-rc0"
3+
__version__ = "0.10.2"
44
RECORD_TYPE_ACAPY_VERSION = "acapy_version"

open-api/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi" : "3.0.1",
33
"info" : {
44
"title" : "Aries Cloud Agent",
5-
"version" : "v0.10.2-rc0"
5+
"version" : "v0.10.2"
66
},
77
"servers" : [ {
88
"url" : "/"

open-api/swagger.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"swagger" : "2.0",
33
"info" : {
4-
"version" : "v0.10.2-rc0",
4+
"version" : "v0.10.2",
55
"title" : "Aries Cloud Agent"
66
},
77
"tags" : [ {

0 commit comments

Comments
 (0)