Skip to content

Commit

Permalink
update rgb-lib to 0.3.0-alpha.3 + bump version to 0.3.0a3
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbus committed Jun 19, 2024
1 parent 204ed7a commit 6ac8c3c
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.0a1
jupyterlab matplotlib python-magic qrcode rgb-lib==0.3.0a3

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.0a1'
version = '0.3.0a3'
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 55 files
+97 −0 .github/workflows/build.yml
+22 −0 .github/workflows/format.yml
+28 −0 .github/workflows/lint.yml
+5 −35 .github/workflows/test.yml
+346 −355 Cargo.lock
+5 −3 Cargo.toml
+1 −1 migration/src/main.rs
+124 −117 rgb-lib-ffi/Cargo.lock
+4 −2 rgb-lib-ffi/build.rs
+34 −49 rgb-lib-ffi/src/lib.rs
+12 −1 rgb-lib-ffi/src/rgb-lib.udl
+4 −0 src/api/mod.rs
+3 −9 src/api/proxy.rs
+2 −7 src/database/enums.rs
+4 −49 src/database/mod.rs
+14 −7 src/error.rs
+1 −10 src/keys.rs
+232 −13 src/lib.rs
+81 −171 src/utils.rs
+17 −40 src/wallet/backup.rs
+4 −1 src/wallet/mod.rs
+17 −230 src/wallet/offline.rs
+180 −314 src/wallet/online.rs
+566 −0 src/wallet/rust_only.rs
+0 −3 src/wallet/test/backup.rs
+37 −6 src/wallet/test/blind_receive.rs
+10 −1 src/wallet/test/create_utxos.rs
+0 −1 src/wallet/test/delete_transfers.rs
+4 −4 src/wallet/test/drain_to.rs
+0 −1 src/wallet/test/fail_transfers.rs
+0 −1 src/wallet/test/get_address.rs
+0 −1 src/wallet/test/get_asset_balance.rs
+0 −1 src/wallet/test/get_asset_metadata.rs
+5 −6 src/wallet/test/get_btc_balance.rs
+0 −1 src/wallet/test/get_wallet_data.rs
+1 −2 src/wallet/test/get_wallet_dir.rs
+0 −4 src/wallet/test/go_online.rs
+0 −1 src/wallet/test/issue_asset_cfa.rs
+0 −1 src/wallet/test/issue_asset_nia.rs
+0 −1 src/wallet/test/issue_asset_uda.rs
+0 −1 src/wallet/test/list_assets.rs
+0 −1 src/wallet/test/list_transactions.rs
+0 −1 src/wallet/test/list_transfers.rs
+0 −1 src/wallet/test/list_unspents.rs
+0 −1 src/wallet/test/list_unspents_vanilla.rs
+29 −86 src/wallet/test/mod.rs
+12 −6 src/wallet/test/new.rs
+0 −4 src/wallet/test/refresh.rs
+1 −3 src/wallet/test/save_new_asset.rs
+28 −10 src/wallet/test/send.rs
+6 −7 src/wallet/test/send_btc.rs
+0 −1 src/wallet/test/sign_psbt.rs
+4 −29 src/wallet/test/utils/api.rs
+0 −1 src/wallet/test/witness_receive.rs
+13 −11 tests/start_services.sh

0 comments on commit 6ac8c3c

Please sign in to comment.