diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1449ecda..aeeca784 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ] + os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2022, windows-latest ] steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable diff --git a/Cargo.lock b/Cargo.lock index 2dbac4f1..b6ed6f7e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "client_side_validation" -version = "0.12.0-rc.1" +version = "0.12.0" dependencies = [ "commit_verify", "serde", @@ -148,7 +148,7 @@ dependencies = [ [[package]] name = "commit_encoding_derive" -version = "0.12.0-rc.1" +version = "0.12.0" dependencies = [ "amplify", "amplify_syn", @@ -161,7 +161,7 @@ dependencies = [ [[package]] name = "commit_verify" -version = "0.12.0-rc.1" +version = "0.12.0" dependencies = [ "amplify", "commit_encoding_derive", @@ -457,7 +457,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "single_use_seals" -version = "0.12.0-rc.1" +version = "0.12.0" dependencies = [ "serde", "strict_encoding", diff --git a/Cargo.toml b/Cargo.toml index 11d49203..b375292d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ default-members = [ ] [workspace.package] -version = "0.12.0-rc.1" +version = "0.12.0" authors = ["Dr Maxim Orlovsky "] homepage = "https://github.com/LNP-BP" repository = "https://github.com/LNP-BP/client_side_validation" @@ -47,8 +47,8 @@ name = "client_side_validation" path = "src/lib.rs" [dependencies] -commit_verify = { version = "0.12.0-beta.6", path = "./commit_verify", default-features = false } -single_use_seals = { version = "0.12.0-beta.6", path = "./single_use_seals", features = ["strict_encoding"] } +commit_verify = { version = "0.12.0", path = "./commit_verify", default-features = false } +single_use_seals = { version = "0.12.0", path = "./single_use_seals", features = ["strict_encoding"] } serde = { workspace = true, optional = true } [features]