diff --git a/pallas-codec/Cargo.toml b/pallas-codec/Cargo.toml index 6fdf9b3..76f91e2 100644 --- a/pallas-codec/Cargo.toml +++ b/pallas-codec/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-codec" description = "Pallas common CBOR encoding interface and utilities" -version = "0.7.1" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" diff --git a/pallas-crypto/Cargo.toml b/pallas-crypto/Cargo.toml index c3b9659..e586862 100644 --- a/pallas-crypto/Cargo.toml +++ b/pallas-crypto/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-crypto" description = "Cryptographic primitives for Cardano" -version = "0.7.0" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" diff --git a/pallas-miniprotocols/Cargo.toml b/pallas-miniprotocols/Cargo.toml index a67d81c..b42f705 100644 --- a/pallas-miniprotocols/Cargo.toml +++ b/pallas-miniprotocols/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-miniprotocols" description = "Implementation of the Ouroboros network mini-protocols state-machines" -version = "0.7.1" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" @@ -13,8 +13,8 @@ authors = [ ] [dependencies] -pallas-multiplexer = { version = "0.7.0-alpha.0", path = "../pallas-multiplexer/" } -pallas-codec = { version = "0.7.0-alpha.0", path = "../pallas-codec/" } +pallas-multiplexer = { version = "0.8.0-alpha.0", path = "../pallas-multiplexer/" } +pallas-codec = { version = "0.8.0-alpha.0", path = "../pallas-codec/" } log = "0.4.14" hex = "0.4.3" itertools = "0.10.3" @@ -22,4 +22,4 @@ net2 = "0.2.37" [dev-dependencies] env_logger = "0.9.0" -pallas-primitives = { version = "0.7.0-alpha.0", path = "../pallas-primitives/" } +pallas-primitives = { version = "0.8.0-alpha.0", path = "../pallas-primitives/" } diff --git a/pallas-multiplexer/Cargo.toml b/pallas-multiplexer/Cargo.toml index b338f87..53863c5 100644 --- a/pallas-multiplexer/Cargo.toml +++ b/pallas-multiplexer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-multiplexer" description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels" -version = "0.7.0" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" diff --git a/pallas-primitives/Cargo.toml b/pallas-primitives/Cargo.toml index a416abb..bfb0fa4 100644 --- a/pallas-primitives/Cargo.toml +++ b/pallas-primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas-primitives" description = "Ledger primitives and cbor codec for the different Cardano eras" -version = "0.7.0" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" @@ -16,6 +16,6 @@ authors = [ [dependencies] hex = "0.4.3" log = "0.4.14" -pallas-crypto = { version = "0.7.0-alpha.0", path = "../pallas-crypto" } -pallas-codec = { version = "0.7.0-alpha.0", path = "../pallas-codec" } +pallas-crypto = { version = "0.8.0-alpha.0", path = "../pallas-crypto" } +pallas-codec = { version = "0.8.0-alpha.0", path = "../pallas-codec" } base58 = "0.2.0" diff --git a/pallas/Cargo.toml b/pallas/Cargo.toml index b076d8c..f00e238 100644 --- a/pallas/Cargo.toml +++ b/pallas/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "pallas" description = "Rust-native building blocks for the Cardano blockchain ecosystem." -version = "0.7.0" +version = "0.8.0-alpha.0" edition = "2021" repository = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas" @@ -13,8 +13,8 @@ authors = [ ] [dependencies] -pallas-multiplexer = { version = "0.7.0-alpha.0", path = "../pallas-multiplexer/" } -pallas-miniprotocols = { version = "0.7.0-alpha.0", path = "../pallas-miniprotocols/" } -pallas-primitives = { version = "0.7.0-alpha.0", path = "../pallas-primitives/" } -pallas-crypto = { version = "0.7.0-alpha.0", path = "../pallas-crypto/" } -pallas-codec = { version = "0.7.0-alpha.0", path = "../pallas-codec/" } +pallas-multiplexer = { version = "0.8.0-alpha.0", path = "../pallas-multiplexer/" } +pallas-miniprotocols = { version = "0.8.0-alpha.0", path = "../pallas-miniprotocols/" } +pallas-primitives = { version = "0.8.0-alpha.0", path = "../pallas-primitives/" } +pallas-crypto = { version = "0.8.0-alpha.0", path = "../pallas-crypto/" } +pallas-codec = { version = "0.8.0-alpha.0", path = "../pallas-codec/" }