Skip to content

Commit

Permalink
Release 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
izolyomi committed Sep 21, 2020
1 parent 56e4b17 commit 8c1705e
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 17 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog

## 0.0.5 (2020-09-21)

## 0.0.4 (2020.09.07)
### Change
- Extracted and released `json-digest` as separate crate

## 0.0.4 (2020-09-07)

### Added
- Create and verify JWT tokens with multicipher
Expand All @@ -12,6 +16,6 @@
- `HydraSigner` available on Wasm
- xprv on `HydraPrivate`

## 0.0.2 (2020.07.28)
## 0.0.2 (2020-07-28)

Initial release
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ iop-morpheus-core = { path="./morpheus-core" }
json-digest = { path="./json-digest" }

# [patch.crates-io]
iop-keyvault = { git="https://github.com/Internet-of-People/keyvault-rust", branch="develop" }
iop-keyvault-wasm = { git="https://github.com/Internet-of-People/keyvault-rust", branch="develop" }
#iop-keyvault = { git="https://github.com/Internet-of-People/keyvault-rust", branch="develop" }
#iop-keyvault-wasm = { git="https://github.com/Internet-of-People/keyvault-rust", branch="develop" }
6 changes: 3 additions & 3 deletions morpheus-core-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core-ffi"
version = "0.0.4"
version = "0.0.5"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand All @@ -13,8 +13,8 @@ crate-type = ["rlib", "cdylib"]
[dependencies]
anyhow = "1.0.32"
chrono = { version = "0.4.15", features = ["wasmbind"] }
iop-keyvault = "0.0.4"
iop-morpheus-core = "0.0.4"
iop-keyvault = "0.0.5"
iop-morpheus-core = "0.0.5"
json-digest = "0.0.5"
log = "0.4.11"
serde_json = { version = "1.0.57", features = ["preserve_order"] }
Expand Down
2 changes: 1 addition & 1 deletion morpheus-core-wasm/.package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"wigy <[email protected]>",
"mudlee <[email protected]>"
],
"version": "0.0.4",
"version": "0.0.5",
"files": [
"browser/iop_morpheus_core_wasm_bg.wasm",
"browser/iop_morpheus_core_wasm_bg.js",
Expand Down
8 changes: 4 additions & 4 deletions morpheus-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core-wasm"
version = "0.0.4"
version = "0.0.5"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand All @@ -11,9 +11,9 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
anyhow = "1.0.32"
iop-keyvault = "0.0.4"
iop-keyvault-wasm = "0.0.4"
iop-morpheus-core = "0.0.4"
iop-keyvault = "0.0.5"
iop-keyvault-wasm = "0.0.5"
iop-morpheus-core = "0.0.5"
json-digest = "0.0.5"
log = "0.4.11"
serde = "1.0.115"
Expand Down
4 changes: 2 additions & 2 deletions morpheus-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "iop-morpheus-core"
version = "0.0.4"
version = "0.0.5"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"


[dependencies]
anyhow = "1.0.32"
chrono = { version = "0.4.15", features = ["wasmbind"] }
iop-keyvault = "0.0.4"
iop-keyvault = "0.0.5"
json-digest = "0.0.5"
jwt-compact = { version = "0.2.0", default-features = false }
log = "0.4.11"
Expand Down
6 changes: 3 additions & 3 deletions morpheus-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-sdk"
version = "0.0.4"
version = "0.0.5"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
license = "LGPL-3.0-or-later"
edition = "2018"
Expand All @@ -15,8 +15,8 @@ crate-type = ["rlib","cdylib"]
anyhow = "1.0.32"
async-trait = "0.1.40"
hyper = "0.13.7"
iop-keyvault = "0.0.4"
iop-morpheus-core = "0.0.4"
iop-keyvault = "0.0.5"
iop-morpheus-core = "0.0.5"
log = "0.4.11"
rand = "0.7.3"
serde = "1.0.115"
Expand Down

0 comments on commit 8c1705e

Please sign in to comment.