Skip to content

Commit 5dbad49

Browse files
committed
release v0.12.0-beta.4
1 parent a67daed commit 5dbad49

File tree

6 files changed

+43
-41
lines changed

6 files changed

+43
-41
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always
@@ -57,7 +57,7 @@ jobs:
5757
strategy:
5858
fail-fast: false
5959
matrix:
60-
toolchain: [ nightly, beta, stable, 1.77.0 ]
60+
toolchain: [ nightly, beta, stable, 1.81.0 ]
6161
steps:
6262
- uses: actions/checkout@v4
6363
- uses: dtolnay/rust-toolchain@master

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
- develop
8-
- 'v\d+(\.\d+)*'
8+
- 'v[0-9]+.?*'
99

1010
env:
1111
CARGO_TERM_COLOR: always

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ on:
55
branches:
66
- master
77
tags:
8-
- 'v\d+\.*'
8+
- 'v[0-9]+.*'
99
pull_request:
1010
branches:
1111
- master
1212
- develop
13-
- 'v\d+(\.\d+)*'
13+
- 'v[0-9]+.?*'
1414

1515
env:
1616
CARGO_TERM_COLOR: always

Cargo.lock

Lines changed: 29 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rgb-core"
3-
version = "0.12.0-beta.3"
3+
version = "0.12.0-beta.4"
44
authors = ["Dr Maxim Orlovsky <[email protected]>"]
55
description = "RGB Core Library: confidential & scalable smart contracts on Bitcoin & Lightning (consensus layer)"
66
repository = "https://github.com/RGB-WG/rgb-core"
@@ -10,7 +10,7 @@ categories = ["cryptography::cryptocurrencies"]
1010
readme = "README.md"
1111
license = "Apache-2.0"
1212
edition = "2021"
13-
rust-version = "1.77.0" # Due to `rustfix`
13+
rust-version = "1.81.0" # Due to need for `Error` trait in `core`
1414
exclude = [".github"]
1515

1616
[lib]
@@ -19,11 +19,11 @@ crate-type = ["cdylib", "rlib", "staticlib"] # We need this for WASM
1919

2020
[dependencies]
2121
amplify = { version = "~4.8.0", default-features = false, features = ["alloc"] }
22-
ultrasonic = "0.12.0-beta.2"
22+
ultrasonic = "0.12.0-beta.4"
2323
strict_encoding = "2.8.1"
24-
commit_verify = "~0.12.0-beta.1"
25-
single_use_seals = { version = "~0.12.0-beta.1", features = ["strict_encoding"] }
26-
bp-core = { version = "0.12.0-beta.2", optional = true }
24+
commit_verify = "~0.12.0-beta.4"
25+
single_use_seals = { version = "~0.12.0-beta.4", features = ["strict_encoding"] }
26+
bp-core = { version = "0.12.0-beta.4", optional = true }
2727
serde = { version = "1", optional = true }
2828

2929
[features]
@@ -52,9 +52,3 @@ wasm-bindgen-test = "0.3"
5252

5353
[package.metadata.docs.rs]
5454
features = ["all"]
55-
56-
[patch.crates-io]
57-
ultrasonic = { git = "https://github.com/AluVM/ultrasonic" }
58-
commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.12" }
59-
single_use_seals = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.12" }
60-
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "v0.12" }

0 commit comments

Comments
 (0)