Skip to content
This repository has been archived by the owner on Dec 9, 2023. It is now read-only.

Commit

Permalink
v0.2.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Nov 6, 2020
1 parent e67ddde commit 4740b4c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 14 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
==========

v0.2.0-beta.2
-------------

### Features:
- RPC commands to get allocations for assets and outpoints
- Sync operation supports multiple data formats
- Strict encoding for asset data. Adding strict encode-based import/export.


### Fixes:
- Fixing problem with prune right in asset issuance


v0.2.0-beta.1
-------------
Migrated to the second version of LNP/BP Core Library (v0.2, currently beta-1).
Expand All @@ -9,13 +22,15 @@ Migrated to the second version of LNP/BP Core Library (v0.2, currently beta-1).
- Fixed `rgb-cli export` command (now it parses Bech32-formatted asset name)
- Updated feature structure, fixed feature interdependencies


v0.1.1
------

### Fixes
- Exposed `contracts::fungible::data::invoice::Error` as `InvoiceError`
<https://github.com/LNP-BP/rgb-node/pull/93>


v0.1.0
------

Expand Down
13 changes: 8 additions & 5 deletions Cargo.lock

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

13 changes: 4 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ required-features = ["cli"]

[dependencies]
# LNP/BP crates
amplify = "~2.3.0"
amplify = "~2.3.1"
amplify_derive = "~2.3.0"
lnpbp = { git = "git://github.com/LNP-BP/rust-lnpbp", features = ["lnp", "url", "websockets"] }
lnpbp_derive = { git = "git://github.com/LNP-BP/rust-lnpbp" }
lnpbp_services = { git = "git://github.com/LNP-BP/rust-lnpbp" }
lnpbp = { version = "=0.2.0-beta.2", features = ["lnp", "url", "websockets"] }
lnpbp_derive = "=0.2.0-beta.2"
lnpbp_services = "=0.2.0-beta.2"
# Rust language
lazy_static = "~1.4.0"
nix = { version = "~0.19.0", optional = true }
Expand Down Expand Up @@ -73,11 +73,6 @@ futures = "~0.3.5"
[target.'cfg(target_os="android")'.dependencies]
zmq = { version = "~0.9", features = ["vendored"] }

[target.'cfg(target_os="android")'.patch.crates-io]
# Use this for Android builds
# Remove this once https://github.com/jean-airoldie/zeromq-src-rs/pull/15 got merged
zeromq-src = { git = "https://github.com/LNP-BP/zeromq-src-rs", branch = "fix/cmake" }

# Recommended set of features:
# 1. Standalone node: `server` (=`node`+`shell`)
# 2. Cli to remote node: `cli` (auto includes `shell` and `integration`)
Expand Down

0 comments on commit 4740b4c

Please sign in to comment.