Skip to content

Commit

Permalink
Preparing for release
Browse files Browse the repository at this point in the history
  • Loading branch information
izolyomi committed Sep 7, 2020
1 parent ec4707a commit 2754959
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 29 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog


## 0.0.4 (2020.09.07)

### Added
- Create and verify JWT tokens with multicipher
- Hydra transaction builder, exposed on FFI and Wasm
- transfer
- vote
- unvote
- `HydraSigner` available on Wasm
- xprv on `HydraPrivate`

## 0.0.2 (2020.07.28)

Initial release
38 changes: 21 additions & 17 deletions Cargo.lock

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

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ lto = true
opt-level = 's'

[patch.crates-io]
# TODO comment these
iop-keyvault = { path="../keyvault-rs/keyvault" }
iop-keyvault-wasm = { path="../keyvault-rs/keyvault-wasm" }
#iop-keyvault = { path="../keyvault-rs/keyvault" }
#iop-keyvault-wasm = { path="../keyvault-rs/keyvault-wasm" }
iop-morpheus-core = { path="./morpheus-core" }

# [patch.crates-io]
Expand Down
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.2"
version = "0.0.4"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

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


[dependencies]
chrono = "*"
chrono = { version = "*", features = ["wasmbind"] }
failure = "*"
iop-keyvault = "0.0.4"
iop-morpheus-core = "0.0.2"
iop-morpheus-core = "0.0.4"
log = "*"
serde_json = { version = "*", features = ["preserve_order"] }
serde_repr = "*"
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.1",
"version": "0.0.4",
"files": [
"browser/iop_morpheus_core_wasm_bg.wasm",
"browser/iop_morpheus_core_wasm_bg.js",
Expand Down
4 changes: 2 additions & 2 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.2"
version = "0.0.4"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand All @@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"]
failure = "*"
iop-keyvault = "0.0.4"
iop-keyvault-wasm = "0.0.4"
iop-morpheus-core = "0.0.2"
iop-morpheus-core = "0.0.4"
js-sys = "*"
log = "*"
serde = "*"
Expand Down
2 changes: 1 addition & 1 deletion morpheus-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iop-morpheus-core"
version = "0.0.2"
version = "0.0.4"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
edition = "2018"

Expand Down
4 changes: 2 additions & 2 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.2"
version = "0.0.4"
authors = ["IoP Ventures LLC <[email protected]>", "Rache Bartmoss <[email protected]>", "wigy <[email protected]>"]
license = "LGPL-3.0-or-later"
edition = "2018"
Expand All @@ -17,7 +17,7 @@ failure = "*"
futures = "*"
hyper = "*"
iop-keyvault = "0.0.4"
iop-morpheus-core = "0.0.2"
iop-morpheus-core = "0.0.4"
log = "*"
multihash = "*"
rand = "*"
Expand Down

0 comments on commit 2754959

Please sign in to comment.