From 36819dc6e47efe2faf89d7c36f2f4831c7538b94 Mon Sep 17 00:00:00 2001 From: Dr Maxim Orlovsky Date: Thu, 17 Dec 2020 10:55:15 +0100 Subject: [PATCH] v0.2.0 release --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 3 files changed, 27 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ce3588..ec20d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,28 @@ Change Log ========== +v0.2.0 +------ + +### Core features +- LNP Node and lightning network interoperability +- RPC commands to get allocations for assets and outpoints +- Asset `validate`, `accept`, `asset_allocations` and `outpoint_assets` methods + in integration mod +- Sync operation supports multiple data formats +- Strict encoding for asset data. Adding strict encode-based import/export. + +### Breaking changes +- Changed order and types of arguments in integration module, cli & RPC + +### Changes since RC5 +- Fixed issue #102 with wrong PSBT decoding when deserializing from in-memory + data +- Fixed fungible command-line argument name (stash -> cache) +- Fixing integration config parameters +- Fixed issue #101: error message on fungible CLI API consistent with the code +- Released some of the dependency version requirements in Cargo.toml + v0.2.0-rc.5 ----------- - Fixed secondary issue rights processing in integration module and folding of diff --git a/Cargo.lock b/Cargo.lock index 6cb7ca9..bdd3fb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1017,9 +1017,9 @@ checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a" [[package]] name = "lnpbp" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e05cfb147adf2a1261543550cef0dcdcb4f15f9934c3c59d50c741ed3455b230" +checksum = "f111d739c902b3848ac078f1fc3197dfa2539220265c6ff008211a69c868fdff" dependencies = [ "amplify", "amplify_derive", @@ -1648,7 +1648,7 @@ checksum = "3b181ba2dcf07aaccad5448e8ead58db5b742cf85dfe035e2227f137a539a189" [[package]] name = "rgb_node" -version = "0.2.0-rc.5" +version = "0.2.0" dependencies = [ "amplify", "amplify_derive", diff --git a/Cargo.toml b/Cargo.toml index c66c98d..62d31df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rgb_node" description = "RGB node" -version = "0.2.0-rc.5" +version = "0.2.0" authors = ["Dr. Maxim Orlovsky "] license = "MIT" keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"] @@ -32,7 +32,7 @@ required-features = ["cli"] # LNP/BP crates amplify = "2.4" amplify_derive = "2.4.1" -lnpbp = { version = "~0.2.1", features = ["lnp", "url", "websockets", "keygen"] } +lnpbp = { version = "~0.2.2", features = ["lnp", "url", "websockets", "keygen"] } lnpbp_derive = "~0.2.0" lnpbp_services = "~0.2.0" # Rust language