Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
62 changes: 28 additions & 34 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions amp2_mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amp2_mock"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
description = "Liquid Wallet Kit - AMP2 mock server for testing"
license = "MIT OR BSD-2-Clause"
Expand All @@ -11,9 +11,9 @@ name = "amp2_mock"
path = "src/main.rs"

[dependencies]
lwk_common = { version = "0.18.0" }
lwk_signer = { version = "0.18.0" }
lwk_wollet = { version = "0.18.0" }
lwk_common = { version = "0.19.0" }
lwk_signer = { version = "0.19.0" }
lwk_wollet = { version = "0.19.0" }

serde.workspace = true
serde_json.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ You can use the crates released on [crates.io](https://crates.io)

```rust,ignore
[dependencies]
lwk_wollet = "0.18.0"
lwk_signer = "0.18.0"
lwk_common = "0.18.0"
lwk_wollet = "0.19.0"
lwk_signer = "0.19.0"
lwk_common = "0.19.0"
```

## Python
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
# craneLib.crateNameFromCargoToml { cargoToml = ./path/to/Cargo.toml; }
# but I can't make it work
pname = "lwk_cli";
version = "0.18.0";
version = "0.19.0";
};
cargoArtifacts = craneLib.buildDepsOnly commonArgs;
# remember, `set1 // set2` does a shallow merge:
Expand Down
14 changes: 7 additions & 7 deletions lwk_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "lwk_app"
version = "0.18.0"
version = "0.19.0"
edition = "2021"
description = "Liquid Wallet Kit - RPC server App"
license = "MIT OR BSD-2-Clause"
exclude = ["test_data/"]
documentation = "https://docs.rs/lwk_app"

[dependencies]
lwk_common = { version = "0.18.0", features = ["sqlite"] }
lwk_jade = { version = "0.18.0" }
lwk_signer = { version = "0.18.0" }
lwk_wollet = { version = "0.18.0" }
lwk_rpc_model = { version = "0.18.0" }
lwk_tiny_jrpc = { version = "0.18.0" }
lwk_common = { version = "0.19.0", features = ["sqlite"] }
lwk_jade = { version = "0.19.0" }
lwk_signer = { version = "0.19.0" }
lwk_wollet = { version = "0.19.0" }
lwk_rpc_model = { version = "0.19.0" }
lwk_tiny_jrpc = { version = "0.19.0" }

jsonrpc = { version = "0.18.0" }
base64 = "0.22"
Expand Down
2 changes: 2 additions & 0 deletions lwk_bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.19.0

* Added `DerivationPath`
* Removed `get_path()`, replaced with `DerivationPath::from_account()`
* Changed "simplicity" functions `derive_keypair()`, `simplicity_derive_xonly_pubkey()`, `create_p2pk_signature()` to accept `DerivatioPath` instead of `str`
Expand Down
16 changes: 8 additions & 8 deletions lwk_bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "lwk_bindings"
version = "0.18.3"
version = "0.19.0"
edition = "2021"
description = "Liquid Wallet Kit - Bindings for other languages"
license = "MIT OR BSD-2-Clause"
exclude = ["tests/", "test_data/", "android_bindings/", "csharp/", "examples/"]
documentation = "https://docs.rs/lwk_bindings"

[dependencies]
lwk_common = { version = "0.18.1" }
lwk_signer = { version = "0.18.1" }
lwk_wollet = { version = "0.18.1" }
lwk_test_util = { version = "0.18.0" }
lwk_payment_instructions = { version = "0.18.1" }
lwk_boltz = { version = "0.18.0", optional = true }
lwk_simplicity = { version = "0.18.0", optional = true }
lwk_common = { version = "0.19.0" }
lwk_signer = { version = "0.19.0" }
lwk_wollet = { version = "0.19.0" }
lwk_test_util = { version = "0.19.0" }
lwk_payment_instructions = { version = "0.19.0" }
lwk_boltz = { version = "0.19.0", optional = true }
lwk_simplicity = { version = "0.19.0", optional = true }
tokio = { version = "1.0", features = [
"rt",
], optional = true } # move into lwk_boltz
Expand Down
2 changes: 1 addition & 1 deletion lwk_bindings/android_bindings/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ kotlinx.atomicfu.enableNativeIrTransformation=true

kotlin.mpp.enableCInteropCommonization=true

libraryVersion=0.18.3
libraryVersion=0.19.0
2 changes: 1 addition & 1 deletion lwk_bindings/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lwk"
version = "0.18.3"
version = "0.19.0"
description = "Liquid Wallet Kit"
keywords = ["liquid", "elements", "wallet"]
readme = "README-wheel.md"
Expand Down
2 changes: 2 additions & 0 deletions lwk_boltz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.19.0

## 0.18.0

## 0.17.0
Expand Down
Loading
Loading