Skip to content

Commit

Permalink
release 0.64.0 (#1223)
Browse files Browse the repository at this point in the history
Signed-off-by: James Ebert <jamesebert.k@gmail.com>
  • Loading branch information
JamesKEbert committed Jun 11, 2024
1 parent f0c8184 commit 228252d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 14 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ members = [
]

[workspace.package]
version = "0.63.0"
version = "0.64.0"
authors = [
"Absa Group Limited",
"Hyperledger Indy Contributors <hyperledger-indy@lists.hyperledger.org>",
Expand Down
2 changes: 1 addition & 1 deletion aries/aries_vcx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ webservers for VC issuance/verification, didcomm mediator service etc.
To use `aries_vcx` in your project, you need to add GitHub dependency to your `Cargo.toml`, and best
define a version through a `tag`:
```toml
aries-vcx = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
aries-vcx = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
```
It's also advisable to follow these [instructions](TUTORIAL.md) to check your environment is properly configured.

Expand Down
2 changes: 1 addition & 1 deletion did_core/did_methods/did_peer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Add the Peer DID library as a dependency in your `Cargo.toml` file:

```toml
[dependencies]
peer_did = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
peer_did = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
```

## Demo
Expand Down
7 changes: 6 additions & 1 deletion did_core/did_parser_nom/README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# did_parser_nom

## Overview

Rust crate for parsing [DIDs](https://www.w3.org/TR/did-core/#did-syntax) and [DID URLs](https://www.w3.org/TR/did-core/#did-url-syntax).

## Features

- **DID Parsing**: Capability to parse `did:` strings, ensuring they comply with the DID specifications.
- **DID URL**: Functionality to parse DID URLs.

## Getting Started

### Installation

Add the did_parser library as a dependency in your `Cargo.toml` file:

```toml
[dependencies]
did_parser_nom = { tag = "0.63.0", git = "https://github.com/hyperledger/aries-vcx" }
did_parser_nom = { tag = "0.64.0", git = "https://github.com/hyperledger/aries-vcx" }
```

0 comments on commit 228252d

Please sign in to comment.