From 02b408fb32865aae1ce5e096858e982cb197f04a Mon Sep 17 00:00:00 2001 From: Jared Stanbrough Date: Wed, 17 Feb 2021 10:20:01 -0800 Subject: [PATCH] feat(rust): ockam crate v0.2.0 --- implementations/rust/ockam/ockam/CHANGELOG.md | 9 +++++++++ implementations/rust/ockam/ockam/Cargo.lock | 6 +++--- implementations/rust/ockam/ockam/Cargo.toml | 6 +++--- implementations/rust/ockam/ockam/README.md | 4 ++-- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/implementations/rust/ockam/ockam/CHANGELOG.md b/implementations/rust/ockam/ockam/CHANGELOG.md index d9c5aa32b8c..de40d47f989 100644 --- a/implementations/rust/ockam/ockam/CHANGELOG.md +++ b/implementations/rust/ockam/ockam/CHANGELOG.md @@ -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 diff --git a/implementations/rust/ockam/ockam/Cargo.lock b/implementations/rust/ockam/ockam/Cargo.lock index 1814c207f3d..06d33ec2102 100644 --- a/implementations/rust/ockam/ockam/Cargo.lock +++ b/implementations/rust/ockam/ockam/Cargo.lock @@ -394,7 +394,7 @@ dependencies = [ [[package]] name = "ockam" -version = "0.1.0" +version = "0.2.0" dependencies = [ "arrayref", "hashbrown", @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "ockam_vault" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aes-gcm", "arrayref", @@ -459,7 +459,7 @@ dependencies = [ [[package]] name = "ockam_vault_core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "cfg-if 1.0.0", "ockam_core", diff --git a/implementations/rust/ockam/ockam/Cargo.toml b/implementations/rust/ockam/ockam/Cargo.toml index c6eb89c90e1..4b9e8216dc2 100644 --- a/implementations/rust/ockam/ockam/Cargo.toml +++ b/implementations/rust/ockam/ockam/Cargo.toml @@ -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"] @@ -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"] } diff --git a/implementations/rust/ockam/ockam/README.md b/implementations/rust/ockam/ockam/README.md index 57cb600cee4..e3ab4a2eeb9 100644 --- a/implementations/rust/ockam/ockam/README.md +++ b/implementations/rust/ockam/ockam/README.md @@ -18,7 +18,7 @@ Add this to your `Cargo.toml`: ``` [dependencies] -ockam = "0.1.0" +ockam = "0.2.0" ``` ## Crate Features @@ -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