Skip to content

Commit

Permalink
feat(rust): ockam crate v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Stanbrough committed Feb 17, 2021
1 parent ba6d7dd commit 02b408f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions implementations/rust/ockam/ockam/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this crate will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.2.0 - 2021-02-17
### Added
- Contact and Profile APIs.
- Profile Changes API.

### Modified
- Updated dependencies.
- Improved error handling.

## v0.1.0 - 2021-02-04
### Added

Expand Down
6 changes: 3 additions & 3 deletions implementations/rust/ockam/ockam/Cargo.lock

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

6 changes: 3 additions & 3 deletions implementations/rust/ockam/ockam/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ license = "Apache-2.0"
name = "ockam"
readme = "README.md"
repository = "https://github.com/ockam-network/ockam"
version = "0.1.0"
version = "0.2.0"

[features]
default = ["std"]
Expand All @@ -23,8 +23,8 @@ std = ["ockam_node"]
ockam_core = {path = "../ockam_core", version = "0.3.0"}
ockam_node = {path = "../ockam_node", version = "0.2.0", optional = true}
ockam_node_attribute = {path = "../ockam_node_attribute", version = "0.1.3"}
ockam_vault_core = {path = "../ockam_vault_core", version = "*"}
ockam_vault = {path = "../ockam_vault", version = "*"}
ockam_vault_core = {path = "../ockam_vault_core", version = "0.2.0"}
ockam_vault = {path = "../ockam_vault", version = "0.2.0"}
arrayref = "0.3"
hex = "0.4"
hashbrown = { version = "0.9.1", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions implementations/rust/ockam/ockam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`:

```
[dependencies]
ockam = "0.1.0"
ockam = "0.2.0"
```

## Crate Features
Expand All @@ -29,7 +29,7 @@ disabled as follows

```
[dependencies]
ockam = { version = "0.1.0", default-features = false }
ockam = { version = "0.2.0", default-features = false }
```

Please note that Cargo features are unioned across the entire dependency
Expand Down

0 comments on commit 02b408f

Please sign in to comment.