Skip to content

Commit 374fe12

Browse files
author
Jared Stanbrough
committed
feat(rust): ockam_vault_core crate v0.2.0
1 parent 4abd706 commit 374fe12

8 files changed

Lines changed: 22 additions & 8 deletions

File tree

implementations/rust/ockam/ockam_ffi/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam_ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ lto = true
1212

1313
[dependencies]
1414
ockam_core = { path = "../ockam_core", version = "0.3.0" }
15-
ockam_vault_core = {path = "../ockam_vault_core", version = "0.1.0" }
15+
ockam_vault_core = {path = "../ockam_vault_core", version = "0.2.0" }
1616
ockam_vault = { path = "../ockam_vault", version = "0.1" }
1717
lazy_static = { version = "1.4" }

implementations/rust/ockam/ockam_vault/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam_vault/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ no_std = ["ockam_vault_core/heapless"]
2222

2323
[dependencies]
2424
ockam_core = {path = "../ockam_core", version = "0.3.0"}
25-
ockam_vault_core = {path = "../ockam_vault_core", version = "0.1.0"}
25+
ockam_vault_core = {path = "../ockam_vault_core", version = "0.2.0"}
2626
arrayref = "0.3"
2727
aes-gcm = "0.8"
2828
curve25519-dalek = "3.0"

implementations/rust/ockam/ockam_vault_core/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,17 @@ All notable changes to this crate will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## v0.2.0 - 2021-02-16
9+
### Added
10+
- Symmetric and Asymmetric Vault traits.
11+
- Secret Attributes.
12+
13+
### Modified
14+
- Updated dependencies.
15+
16+
17+
18+
## v0.1.0 - 2021-02-10
19+
20+
Initial release.

implementations/rust/ockam/ockam_vault_core/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

implementations/rust/ockam/ockam_vault_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ockam_vault_core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Ockam Developers"]
55
edition = "2018"
66
license = "Apache-2.0"

implementations/rust/ockam/ockam_vault_core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add this to your `Cargo.toml`:
1919

2020
```
2121
[dependencies]
22-
ockam_vault_core = "0.1.0"
22+
ockam_vault_core = "0.2.0"
2323
```
2424

2525
## Crate Features
@@ -30,7 +30,7 @@ disabled as follows
3030

3131
```
3232
[dependencies]
33-
ockam_vault_core = { version = "0.1.0", default-features = false }
33+
ockam_vault_core = { version = "0.2.0", default-features = false }
3434
```
3535

3636
Please note that Cargo features are unioned across the entire dependency

0 commit comments

Comments
 (0)