Skip to content

Commit

Permalink
release v0.12.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 23, 2024
1 parent a67daed commit 5dbad49
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 41 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v\d+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v\d+(\.\d+)*'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.77.0 ]
toolchain: [ nightly, beta, stable, 1.81.0 ]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v\d+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v\d+(\.\d+)*'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- master
- develop
- 'v\d+(\.\d+)*'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches:
- master
tags:
- 'v\d+\.*'
- 'v[0-9]+.*'
pull_request:
branches:
- master
- develop
- 'v\d+(\.\d+)*'
- 'v[0-9]+.?*'

env:
CARGO_TERM_COLOR: always
Expand Down
50 changes: 29 additions & 21 deletions Cargo.lock

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

18 changes: 6 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rgb-core"
version = "0.12.0-beta.3"
version = "0.12.0-beta.4"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
description = "RGB Core Library: confidential & scalable smart contracts on Bitcoin & Lightning (consensus layer)"
repository = "https://github.com/RGB-WG/rgb-core"
Expand All @@ -10,7 +10,7 @@ categories = ["cryptography::cryptocurrencies"]
readme = "README.md"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.77.0" # Due to `rustfix`
rust-version = "1.81.0" # Due to need for `Error` trait in `core`
exclude = [".github"]

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

[dependencies]
amplify = { version = "~4.8.0", default-features = false, features = ["alloc"] }
ultrasonic = "0.12.0-beta.2"
ultrasonic = "0.12.0-beta.4"
strict_encoding = "2.8.1"
commit_verify = "~0.12.0-beta.1"
single_use_seals = { version = "~0.12.0-beta.1", features = ["strict_encoding"] }
bp-core = { version = "0.12.0-beta.2", optional = true }
commit_verify = "~0.12.0-beta.4"
single_use_seals = { version = "~0.12.0-beta.4", features = ["strict_encoding"] }
bp-core = { version = "0.12.0-beta.4", optional = true }
serde = { version = "1", optional = true }

[features]
Expand Down Expand Up @@ -52,9 +52,3 @@ wasm-bindgen-test = "0.3"

[package.metadata.docs.rs]
features = ["all"]

[patch.crates-io]
ultrasonic = { git = "https://github.com/AluVM/ultrasonic" }
commit_verify = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.12" }
single_use_seals = { git = "https://github.com/LNP-BP/client_side_validation", branch = "v0.12" }
bp-core = { git = "https://github.com/BP-WG/bp-core", branch = "v0.12" }

0 comments on commit 5dbad49

Please sign in to comment.