Release 0.4.0

pallas@0.4.0
pallas-alonzo@0.4.0
pallas-blockfetch@0.4.0
pallas-chainsync@0.4.0
pallas-crypto@0.4.0
pallas-handshake@0.4.0
pallas-localstate@0.4.0
pallas-machines@0.4.0
pallas-multiplexer@0.4.0
pallas-txsubmission@0.4.0

Generated by cargo-workspaces
This commit is contained in:
Santiago Carmuega 2022-01-31 20:26:32 -03:00
parent 3f357b9b1d
commit 0911d6adea
10 changed files with 35 additions and 35 deletions

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-alonzo" name = "pallas-alonzo"
description = "Ledger primitives and cbor codec for the Alonzo era" description = "Ledger primitives and cbor codec for the Alonzo era"
version = "0.3.9" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -17,4 +17,4 @@ minicbor = { version = "0.13", features = ["std"] }
minicbor-derive = "0.8.0" minicbor-derive = "0.8.0"
hex = "0.4.3" hex = "0.4.3"
log = "0.4.14" log = "0.4.14"
pallas-crypto = { version = "0.3", path = "../pallas-crypto" } pallas-crypto = { version = "0.4.0", path = "../pallas-crypto" }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-blockfetch" name = "pallas-blockfetch"
description = "Implementation of the Ouroboros network blockfetch mini-protocol" description = "Implementation of the Ouroboros network blockfetch mini-protocol"
version = "0.3.4" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,13 +13,13 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
minicbor = { version="0.13", features=["half", "std"] } minicbor = { version="0.13", features=["half", "std"] }
log = "0.4.14" log = "0.4.14"
[dev-dependencies] [dev-dependencies]
net2 = "0.2.37" net2 = "0.2.37"
env_logger = "0.9.0" env_logger = "0.9.0"
pallas-handshake = { version = "0.3.0", path = "../pallas-handshake/" } pallas-handshake = { version = "0.4.0", path = "../pallas-handshake/" }
hex = "0.4.3" hex = "0.4.3"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-chainsync" name = "pallas-chainsync"
description = "Implementation of the Ouroboros network chainsync mini-protocol" description = "Implementation of the Ouroboros network chainsync mini-protocol"
version = "0.3.5" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,8 +13,8 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
minicbor = { version = "0.13.0", features = ["half", "std"] } minicbor = { version = "0.13.0", features = ["half", "std"] }
log = "0.4.14" log = "0.4.14"
hex = "0.4.3" hex = "0.4.3"
@ -23,6 +23,6 @@ hex = "0.4.3"
net2 = "0.2.37" net2 = "0.2.37"
cryptoxide = "0.4.1" cryptoxide = "0.4.1"
env_logger = "0.9.0" env_logger = "0.9.0"
pallas-handshake = { version = "0.3.0", path = "../pallas-handshake/" } pallas-handshake = { version = "0.4.0", path = "../pallas-handshake/" }
pallas-txsubmission = { version = "0.3.0", path = "../pallas-txsubmission/" } pallas-txsubmission = { version = "0.4.0", path = "../pallas-txsubmission/" }
pallas-alonzo = { version = "0.3.0", path = "../pallas-alonzo/" } pallas-alonzo = { version = "0.4.0", path = "../pallas-alonzo/" }

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-crypto" name = "pallas-crypto"
description = "Cryptographic primitives for Cardano" description = "Cryptographic primitives for Cardano"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-handshake" name = "pallas-handshake"
description = "Implementation of the Ouroboros network handshake mini-protocol" description = "Implementation of the Ouroboros network handshake mini-protocol"
version = "0.3.4" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,8 +13,8 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
minicbor = { version="0.13", features=["half", "std"] } minicbor = { version="0.13", features=["half", "std"] }
itertools = "0.10.1" itertools = "0.10.1"
log = "0.4.14" log = "0.4.14"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-localstate" name = "pallas-localstate"
description = "Implementation of the Ouroboros network local state query mini-protocol" description = "Implementation of the Ouroboros network local state query mini-protocol"
version = "0.3.5" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,8 +13,8 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
minicbor = { version="0.13", features=["half", "std"] } minicbor = { version="0.13", features=["half", "std"] }
log = "0.4.14" log = "0.4.14"
hex = "0.4.3" hex = "0.4.3"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-machines" name = "pallas-machines"
description = "A framework for implementing state machines for Ouroboros network mini-protocols" description = "A framework for implementing state machines for Ouroboros network mini-protocols"
version = "0.3.5" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,7 +13,7 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
minicbor = { version="0.13", features=["half", "std"] } minicbor = { version="0.13", features=["half", "std"] }
log = "0.4.14" log = "0.4.14"
hex = "0.4.3" hex = "0.4.3"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-multiplexer" name = "pallas-multiplexer"
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels" description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
version = "0.3.5" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas-txsubmission" name = "pallas-txsubmission"
description = "Implementation of the Ouroboros network txsubmission mini-protocol" description = "Implementation of the Ouroboros network txsubmission mini-protocol"
version = "0.3.5" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,8 +13,8 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.0", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.0", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
minicbor = { version="0.13", features=["half", "std"] } minicbor = { version="0.13", features=["half", "std"] }
log = "0.4.14" log = "0.4.14"
hex = "0.4.3" hex = "0.4.3"

View file

@ -1,7 +1,7 @@
[package] [package]
name = "pallas" name = "pallas"
description = "Rust-native building blocks for the Cardano blockchain ecosystem." description = "Rust-native building blocks for the Cardano blockchain ecosystem."
version = "0.3.9" version = "0.4.0"
edition = "2021" edition = "2021"
repository = "https://github.com/txpipe/pallas" repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas" homepage = "https://github.com/txpipe/pallas"
@ -13,12 +13,12 @@ authors = [
] ]
[dependencies] [dependencies]
pallas-multiplexer = { version = "0.3.5", path = "../pallas-multiplexer/" } pallas-multiplexer = { version = "0.4.0", path = "../pallas-multiplexer/" }
pallas-machines = { version = "0.3.5", path = "../pallas-machines/" } pallas-machines = { version = "0.4.0", path = "../pallas-machines/" }
pallas-handshake = { version = "0.3.4", path = "../pallas-handshake/" } pallas-handshake = { version = "0.4.0", path = "../pallas-handshake/" }
pallas-chainsync = { version = "0.3.5", path = "../pallas-chainsync/" } pallas-chainsync = { version = "0.4.0", path = "../pallas-chainsync/" }
pallas-blockfetch = { version = "0.3.4", path = "../pallas-blockfetch/" } pallas-blockfetch = { version = "0.4.0", path = "../pallas-blockfetch/" }
pallas-localstate = { version = "0.3.5", path = "../pallas-localstate/" } pallas-localstate = { version = "0.4.0", path = "../pallas-localstate/" }
pallas-txsubmission = { version = "0.3.5", path = "../pallas-txsubmission/" } pallas-txsubmission = { version = "0.4.0", path = "../pallas-txsubmission/" }
pallas-alonzo = { version = "0.3.7", path = "../pallas-alonzo/" } pallas-alonzo = { version = "0.4.0", path = "../pallas-alonzo/" }
pallas-crypto = { version = "0.3.0", path = "../pallas-crypto/" } pallas-crypto = { version = "0.4.0", path = "../pallas-crypto/" }