Skip to content

Commit

Permalink
update rgb-lib to 0.3.0-alpha.9 + bump version to 0.3.0a9
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbus committed Oct 9, 2024
1 parent c186f10 commit b60ec09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /home/$USER
USER $USER

RUN python3 -m pip install --no-warn-script-location \
jupyterlab matplotlib python-magic qrcode rgb-lib==0.3.0a8
jupyterlab matplotlib python-magic qrcode rgb-lib==0.3.0a9

COPY --chown=$USER:$USER rgb-lib.ipynb sample.png ./

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = 'rgb-lib'
version = '0.3.0a8'
version = '0.3.0a9'
description = 'RGB Lib Python language bindings.'
license = 'MIT'
authors = ['Zoe Faltibà <zoefaltiba@gmail.com>', 'Nicola Busanello <nicola.busanello@gmail.com>']
Expand Down
2 changes: 1 addition & 1 deletion rgb-lib
Submodule rgb-lib updated 49 files
+8 −0 .github/workflows/format.yml
+6 −0 .github/workflows/lint.yml
+1 −1 .github/workflows/test.yml
+201 −221 Cargo.lock
+1 −1 Cargo.toml
+1 −1 bindings/c-ffi/Cargo.lock
+1 −1 bindings/c-ffi/Cargo.toml
+29 −1 bindings/c-ffi/example.c
+89 −3 bindings/c-ffi/src/lib.rs
+137 −6 bindings/c-ffi/src/utils.rs
+1 −1 bindings/uniffi/Cargo.lock
+1 −1 bindings/uniffi/Cargo.toml
+68 −19 bindings/uniffi/src/lib.rs
+44 −19 bindings/uniffi/src/rgb-lib.udl
+16 −0 src/error.rs
+11 −12 src/lib.rs
+93 −3 src/utils.rs
+133 −14 src/wallet/offline.rs
+210 −267 src/wallet/online.rs
+38 −10 src/wallet/rust_only.rs
+3 −6 src/wallet/test/backup.rs
+2 −38 src/wallet/test/blind_receive.rs
+10 −9 src/wallet/test/create_utxos.rs
+8 −9 src/wallet/test/drain_to.rs
+50 −16 src/wallet/test/fail_transfers.rs
+2 −6 src/wallet/test/get_asset_balance.rs
+2 −2 src/wallet/test/get_btc_balance.rs
+123 −0 src/wallet/test/get_fee_estimation.rs
+9 −2 src/wallet/test/issue_asset_cfa.rs
+8 −2 src/wallet/test/issue_asset_nia.rs
+10 −2 src/wallet/test/issue_asset_uda.rs
+2 −2 src/wallet/test/list_transactions.rs
+1 −1 src/wallet/test/list_transfers.rs
+2 −4 src/wallet/test/list_unspents.rs
+19 −6 src/wallet/test/mod.rs
+3 −4 src/wallet/test/new.rs
+10 −7 src/wallet/test/refresh.rs
+3 −5 src/wallet/test/rust_only.rs
+61 −121 src/wallet/test/send.rs
+11 −4 src/wallet/test/send_btc.rs
+1 −1 src/wallet/test/sign_psbt.rs
+20 −9 src/wallet/test/utils/api.rs
+49 −7 src/wallet/test/utils/chain.rs
+18 −1 src/wallet/test/utils/helpers.rs
+10 −2 tests/coverage.sh
+5 −2 tests/docker-compose.yml
+5 −0 tests/esplora/Dockerfile.notor
+12 −6 tests/regtest.sh
+2 −2 tests/rgb-proxy-server/Dockerfile.modified-api

0 comments on commit b60ec09

Please sign in to comment.