Skip to content

Commit 02b408f

Browse files
author
Jared Stanbrough
committed
feat(rust): ockam crate v0.2.0
1 parent ba6d7dd commit 02b408f

4 files changed

Lines changed: 17 additions & 8 deletions

File tree

implementations/rust/ockam/ockam/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this crate will be documented in this file.
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).
77

8+
## v0.2.0 - 2021-02-17
9+
### Added
10+
- Contact and Profile APIs.
11+
- Profile Changes API.
12+
13+
### Modified
14+
- Updated dependencies.
15+
- Improved error handling.
16+
817
## v0.1.0 - 2021-02-04
918
### Added
1019

implementations/rust/ockam/ockam/Cargo.lock

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

implementations/rust/ockam/ockam/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "Apache-2.0"
1313
name = "ockam"
1414
readme = "README.md"
1515
repository = "https://github.com/ockam-network/ockam"
16-
version = "0.1.0"
16+
version = "0.2.0"
1717

1818
[features]
1919
default = ["std"]
@@ -23,8 +23,8 @@ std = ["ockam_node"]
2323
ockam_core = {path = "../ockam_core", version = "0.3.0"}
2424
ockam_node = {path = "../ockam_node", version = "0.2.0", optional = true}
2525
ockam_node_attribute = {path = "../ockam_node_attribute", version = "0.1.3"}
26-
ockam_vault_core = {path = "../ockam_vault_core", version = "*"}
27-
ockam_vault = {path = "../ockam_vault", version = "*"}
26+
ockam_vault_core = {path = "../ockam_vault_core", version = "0.2.0"}
27+
ockam_vault = {path = "../ockam_vault", version = "0.2.0"}
2828
arrayref = "0.3"
2929
hex = "0.4"
3030
hashbrown = { version = "0.9.1", features = ["serde"] }

implementations/rust/ockam/ockam/README.md

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

1919
```
2020
[dependencies]
21-
ockam = "0.1.0"
21+
ockam = "0.2.0"
2222
```
2323

2424
## Crate Features
@@ -29,7 +29,7 @@ disabled as follows
2929

3030
```
3131
[dependencies]
32-
ockam = { version = "0.1.0", default-features = false }
32+
ockam = { version = "0.2.0", default-features = false }
3333
```
3434

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

0 commit comments

Comments
 (0)