Skip to content

Commit

Permalink
Fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Aug 26, 2021
1 parent 2ca1314 commit 2d96dd5
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 16 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ jobs:
fail-fast: false
matrix:
feature:
- elgamal
- bulletproofs
- serde
- async
steps:
- uses: actions/checkout@v2
- name: Install rust stable
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ Change Log

v0.5.0
------
- TODO: Refactor LNP/BP Core library into client-side-validation library with
- Refactor LNP/BP Core library into client-side-validation library with
`core`, `bp` and (future) `mw`. Move ElGamal, Bech32 and tagged hash into
`core`
- TODO: Refactor single-use-seals; finalize API
- TODO: Move `chain` to BP Core library
- Refactor single-use-seals; finalize API
- Move `chain` to BP Core library
- Finalized string representation for bitcoin seals data
- Removed unused `seals::tx_graph` API

Expand Down
18 changes: 15 additions & 3 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-core"
version = "0.5.0-alpha.1"
version = "0.5.0-beta.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Client-side validation library"
Expand All @@ -21,14 +21,14 @@ amplify = "3.8.2"
strict_encoding = { version = "1.6.1", features = ["bitcoin", "miniscript", "derive"] }
commit_verify = "0.5.6"
single_use_seals = "0.5.5"
bp-dbc = { version = "0.5.0-alpha.1", path = "./dbc", optional = true, default-features = false }
bp-seals = { version = "0.5.0-alpha.1", path = "./seals", optional = true, default-features = false }
bp-dbc = { version = "0.5.0-beta.1", path = "./dbc", optional = true, default-features = false }
bp-seals = { version = "0.5.0-beta.1", path = "./seals", optional = true, default-features = false }
bitcoin = "0.27.0"

[features]
default = []
all = []

all = ["async"]
async = ["single_use_seals/async"]

[workspace]
members = [".", "dbc", "seals"]
Expand Down
2 changes: 1 addition & 1 deletion dbc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-dbc"
version = "0.5.0-alpha.1"
version = "0.5.0-beta.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Deterministic bitcoin commitments library"
Expand Down
7 changes: 6 additions & 1 deletion seals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-seals"
version = "0.5.0-alpha.1"
version = "0.5.0-beta.1"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Bitcoin single-use-seals library"
Expand All @@ -23,3 +23,8 @@ commit_verify = "0.5.6"
strict_encoding = "1.6.1"
lnpbp_bech32 = "0.5.0-beta.1"
bp-dbc = { version = "0.5.0-alpha.1", path = "../dbc" }

[features]
default = []
all = ["async"]
async = ["single_use_seals/async"]

0 comments on commit 2d96dd5

Please sign in to comment.