Skip to content

Commit 6b61991

Browse files
committed
chore: release 0.65.0
Signed-off-by: James Ebert <jamesebert.k@gmail.com>
1 parent e32fe1b commit 6b61991

File tree

6 files changed

+35
-27
lines changed

6 files changed

+35
-27
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ members = [
3333
]
3434

3535
[workspace.package]
36-
version = "0.64.0"
36+
version = "0.65.0"
3737
authors = [
3838
"Absa Group Limited",
3939
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
@@ -73,4 +73,3 @@ unused_import_braces = "warn"
7373
unused_lifetimes = "warn"
7474
unused_qualifications = "warn"
7575
let_underscore_drop = "allow"
76-

aries/agents/aath-backchannel/src/controllers/general.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pub async fn get_status(agent: web::Data<RwLock<HarnessAgent>>) -> impl Responde
2828
#[get("/version")]
2929
pub async fn get_version() -> impl Responder {
3030
// Update this with aries-vcx
31-
HttpResponse::Ok().body("0.64.0")
31+
HttpResponse::Ok().body("0.65.0")
3232
}
3333

3434
#[get("/did")]

aries/aries_vcx/README.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,52 @@
11
# `aries_vcx` crate
2-
Provides basic tools to build didcomm/aries enabled application in Rust. This can include native mobile apps, or
3-
webservers for VC issuance/verification, didcomm mediator service etc.
2+
3+
Provides basic tools to build didcomm/aries enabled application in Rust. This can include native mobile apps, or
4+
webservers for VC issuance/verification, didcomm mediator service etc.
45

56
#### What this crate can do for you
7+
68
- Create encrypted wallet.
79
- Read/write from/to Indy ledger.
810
- Establish didcomm connections and exchange messages.
911
- Create and process Aries messages to drive Aries protocols (especially for VC issuance and presentation).
1012

1113
#### What does crate does NOT DO for you
12-
- Provide message outbounds - `aries_vcx` helps you to create correct response & encrypt it, but you have to take care
14+
15+
- Provide message outbounds - `aries_vcx` helps you to create correct response & encrypt it, but you have to take care
1316
of sending it to the right place.
1417
- Automatic inbound processing - you have to take care of receiving messages and passing them to `aries_vcx` for processing.
1518
You need to keep track of your ongoing aries "conversations" and match incoming messages (typically based on message thread id).
1619

1720
# Getting started
21+
1822
To use `aries_vcx` in your project, you need to add GitHub dependency to your `Cargo.toml`, and best
1923
define a version through a `tag`:
24+
2025
```toml
21-
aries-vcx = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
26+
aries-vcx = { tag = "0.65.0", git = "https://github.com/hyperledger/aries-vcx" }
2227
```
28+
2329
It's also advisable to follow these [instructions](TUTORIAL.md) to check your environment is properly configured.
2430

2531
# Projects built with aries-vcx
32+
2633
- [mediator](../agents/rust/mediator) - Message mediator web service, useful for mobile device to receive messages while the device is offline.
2734
- [unifii_aries_vcx](../../uniffi_aries_vcx) - Mobile wrapper to autogenerate Swift and Kotlin wrappers. Also comes with sample native mobile app.
2835
- [aries-vcx-agent](../agents/rust/aries-vcx-agent) - Sample agent framework adding persistence and message matching on top of `aries_vcx`. Used for cross-compatibility testing with other aries implementations.
2936

3037
## Implemented Aries protocols
31-
* ✅ Connection Protocol 1.0: [`https://didcomm.org/connections/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0160-connection-protocol)
32-
* ✅ Out of Band 1.1: [`https://didcomm.org/out-of-band/1.1/*`](https://github.com/hyperledger/aries-rfcs/blob/main/features/0434-outofband)
33-
* ✅ Basic Message 1.0: [`https://didcomm.org/basicmessage/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0095-basic-message)
34-
* ✅ Credential Issuance 1.0 [`https://didcomm.org/issue-credential/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0036-issue-credential)
35-
* ✅ Credential Presentation 1.0: [`https://didcomm.org/present-proof/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0037-present-proof)
36-
* ✅ Trust Ping 1.0: [`https://didcomm.org/trust_ping/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0048-trust-ping/README.md)
37-
* ✅ Discover Features 1.0: [`https://didcomm.org/discover-features/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0031-discover-features)
38-
* ✅ Revocation notification 2.0: [`https://didcomm.org/revocation_notification/2.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0031-discover-features)
38+
39+
- ✅ Connection Protocol 1.0: [`https://didcomm.org/connections/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0160-connection-protocol)
40+
- ✅ Out of Band 1.1: [`https://didcomm.org/out-of-band/1.1/*`](https://github.com/hyperledger/aries-rfcs/blob/main/features/0434-outofband)
41+
- ✅ Basic Message 1.0: [`https://didcomm.org/basicmessage/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0095-basic-message)
42+
- ✅ Credential Issuance 1.0 [`https://didcomm.org/issue-credential/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0036-issue-credential)
43+
- ✅ Credential Presentation 1.0: [`https://didcomm.org/present-proof/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0037-present-proof)
44+
- ✅ Trust Ping 1.0: [`https://didcomm.org/trust_ping/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0048-trust-ping/README.md)
45+
- ✅ Discover Features 1.0: [`https://didcomm.org/discover-features/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0031-discover-features)
46+
- ✅ Revocation notification 2.0: [`https://didcomm.org/revocation_notification/2.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0031-discover-features)
3947

4048
### State machines guidelines
49+
4150
Please follow these [guidelines](docs/guidelines.md) when implementing new state machines.
4251

4352
## Architecture

did_core/did_methods/did_peer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add the Peer DID library as a dependency in your `Cargo.toml` file:
2323

2424
```toml
2525
[dependencies]
26-
peer_did = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
26+
peer_did = { tag = "0.65.0", git = "https://github.com/hyperledger/aries-vcx" }
2727
```
2828

2929
## Demo

did_core/did_parser_nom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Add the did_parser library as a dependency in your `Cargo.toml` file:
1717

1818
```toml
1919
[dependencies]
20-
did_parser_nom = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
20+
did_parser_nom = { tag = "0.65.0", git = "https://github.com/hyperledger/aries-vcx" }
2121
```

0 commit comments

Comments
 (0)