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

Commit 36819dc

Browse files
committed
v0.2.0 release
1 parent 44f249b commit 36819dc

File tree

3 files changed

+27
-5
lines changed

3 files changed

+27
-5
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Change Log
22
==========
33

4+
v0.2.0
5+
------
6+
7+
### Core features
8+
- LNP Node and lightning network interoperability
9+
- RPC commands to get allocations for assets and outpoints
10+
- Asset `validate`, `accept`, `asset_allocations` and `outpoint_assets` methods
11+
in integration mod
12+
- Sync operation supports multiple data formats
13+
- Strict encoding for asset data. Adding strict encode-based import/export.
14+
15+
### Breaking changes
16+
- Changed order and types of arguments in integration module, cli & RPC
17+
18+
### Changes since RC5
19+
- Fixed issue #102 with wrong PSBT decoding when deserializing from in-memory
20+
data
21+
- Fixed fungible command-line argument name (stash -> cache)
22+
- Fixing integration config parameters
23+
- Fixed issue #101: error message on fungible CLI API consistent with the code
24+
- Released some of the dependency version requirements in Cargo.toml
25+
426
v0.2.0-rc.5
527
-----------
628
- Fixed secondary issue rights processing in integration module and folding of

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rgb_node"
33
description = "RGB node"
4-
version = "0.2.0-rc.5"
4+
version = "0.2.0"
55
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
66
license = "MIT"
77
keywords = ["bitcoin", "node", "layer-2", "smart-contracts", "rgb"]
@@ -32,7 +32,7 @@ required-features = ["cli"]
3232
# LNP/BP crates
3333
amplify = "2.4"
3434
amplify_derive = "2.4.1"
35-
lnpbp = { version = "~0.2.1", features = ["lnp", "url", "websockets", "keygen"] }
35+
lnpbp = { version = "~0.2.2", features = ["lnp", "url", "websockets", "keygen"] }
3636
lnpbp_derive = "~0.2.0"
3737
lnpbp_services = "~0.2.0"
3838
# Rust language

0 commit comments

Comments
 (0)