Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.11.0 beta 9 #269

Merged
merged 37 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
0fc15c9
contract: derive Hash for OutputAssignment
dr-orlovsky Sep 7, 2024
ef4679f
contract: add ContractStateRead::witness_info allowing wallets to acc…
dr-orlovsky Sep 11, 2024
d1d134d
iface: add contract state accessing methods to IfaceWrapper
dr-orlovsky Sep 11, 2024
427931f
chore: fix clippy lint
dr-orlovsky Sep 11, 2024
3c273cd
Merge branch 'fix/271' into develop
dr-orlovsky Sep 18, 2024
1ba9a8b
iface: remove IfaceOp, which should be handled at RGB wallet
dr-orlovsky Sep 20, 2024
806d735
iface: remove unused methods from ContractIface
dr-orlovsky Sep 20, 2024
e75e07a
contract: doc method OutputAssignment::transmute
dr-orlovsky Sep 20, 2024
8f056b8
iface: refactor OutpointFilter into AssignmentsFilter
dr-orlovsky Sep 20, 2024
aa6be3d
Merge branch 'develop' into fix/rgb-252
dr-orlovsky Sep 20, 2024
0ca8164
iface: refactor contract operation history deduction
dr-orlovsky Sep 20, 2024
b8748b7
iface: remove StateChange to simplify APIs
dr-orlovsky Sep 20, 2024
a3ba340
iface: differentiate fungible and non-fungible operations
dr-orlovsky Sep 20, 2024
53fa9a5
iface: support non-fungible history
dr-orlovsky Sep 20, 2024
d5170f9
iface: remove code duplication for history methods
dr-orlovsky Sep 20, 2024
4edbacf
iface: make history methods free of errors
dr-orlovsky Sep 20, 2024
dbfa80b
iface: simplify contract operations type hierarchy
dr-orlovsky Sep 20, 2024
268a318
iface: impl Display for OpDirection
dr-orlovsky Sep 20, 2024
0a0ed66
iface: make ContractOp fields public
dr-orlovsky Sep 20, 2024
77f6ab8
persistence: add Stock::contract_info method
dr-orlovsky Sep 20, 2024
2c915f8
iface: history - ignore blank transitions, fix spent calculation
dr-orlovsky Sep 20, 2024
24af8a5
contract: export WitnessInfo
dr-orlovsky Sep 20, 2024
94b5ebc
chore: fix clippy lints
dr-orlovsky Sep 20, 2024
54f19cd
persistence: fix removed terminal info from index on secret seal re-use
dr-orlovsky Oct 11, 2024
81ab531
Merge branch 'fix/rgb-252' into develop
dr-orlovsky Oct 12, 2024
8d0bc85
fix mismatch between anchored bundles dichotomies in persistence and …
dr-orlovsky Oct 12, 2024
d25dd62
chore: use new DBC method APIs
dr-orlovsky Oct 12, 2024
9807926
containers: allow consignment to reveal multiple seals from terminals
dr-orlovsky Oct 12, 2024
92902ce
persistence: fix MPC proof assignments in witness bundle consume
dr-orlovsky Oct 12, 2024
d1ee1d0
persistence: revert support for multiple witnesses per bundle
dr-orlovsky Oct 13, 2024
32d8109
Merge branch 'dichotomies' into develop
dr-orlovsky Oct 13, 2024
4f0c2e7
chore: update patches and dependencies
dr-orlovsky Oct 13, 2024
885ca71
chore: bump MSRV due to rustfix dependency
dr-orlovsky Oct 13, 2024
4c6c460
chore: fix fmt with new style_edition
dr-orlovsky Oct 13, 2024
72a903c
chore: fix clippy lints
dr-orlovsky Oct 13, 2024
3cd4ad5
Merge pull request #278 from RGB-WG/chore
dr-orlovsky Oct 13, 2024
3346e51
chore: update dependencies
dr-orlovsky Oct 31, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.76.0 ]
toolchain: [ nightly, beta, stable, 1.77.0 ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
edition = "2021"
version = "Two"
style_edition = "2021"

max_width = 100
array_width = 100
Expand Down
Loading
Loading