Skip to content

Commit

Permalink
Release 0.13.1
Browse files Browse the repository at this point in the history
pallas@0.13.1
pallas-addresses@0.13.1
pallas-codec@0.13.1
pallas-crypto@0.13.1
pallas-miniprotocols@0.13.1
pallas-multiplexer@0.13.1
pallas-primitives@0.13.1
pallas-traverse@0.13.1

Generated by cargo-workspaces
  • Loading branch information
scarmuega committed Aug 8, 2022
1 parent 266df0f commit f29cc64
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions examples/block-download/src/main.rs
@@ -1,7 +1,7 @@
use pallas::network::{
miniprotocols::{
handshake::{n2n::VersionTable, Initiator},
run_agent, Point, MAINNET_MAGIC,
run_agent, Point, TESTNET_MAGIC,
},
multiplexer::{bearers::Bearer, StdPlexer},
};
Expand All @@ -22,7 +22,7 @@ impl Observer for BlockPrinter {
fn main() {
env_logger::init();

let bearer = Bearer::connect_tcp("relays-new.cardano-mainnet.iohk.io:3001").unwrap();
let bearer = Bearer::connect_tcp("relays-new.cardano-testnet.iohkdev.io:3001").unwrap();

let mut plexer = StdPlexer::new(bearer);
let mut channel0 = plexer.use_channel(0).into();
Expand All @@ -31,18 +31,18 @@ fn main() {
plexer.muxer.spawn();
plexer.demuxer.spawn();

let versions = VersionTable::v4_and_above(MAINNET_MAGIC);
let versions = VersionTable::v4_and_above(TESTNET_MAGIC);
let _last = run_agent(Initiator::initial(versions), &mut channel0).unwrap();

let range = (
Point::Specific(
97,
hex::decode("cf7fa60bbd210273d79fa48d11ab1d141242af32b231cc40ce3411230a8d3c61")
63528597,
hex::decode("3f3d81c7b88f0fa28867541c5fea8794125cccf6d6c9ee0037a1dbb064130dfd")
.unwrap(),
),
Point::Specific(
99,
hex::decode("a52cca923a67326ea9c409e958a17a77990be72f3607625ec5b3d456202e223e")
63528597,
hex::decode("3f3d81c7b88f0fa28867541c5fea8794125cccf6d6c9ee0037a1dbb064130dfd")
.unwrap(),
),
);
Expand Down
2 changes: 1 addition & 1 deletion pallas-addresses/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-addresses"
description = "Ergonomic library to work with different Cardano addresses"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas-codec/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-codec"
description = "Pallas common CBOR encoding interface and utilities"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas-crypto/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-crypto"
description = "Cryptographic primitives for Cardano"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas-miniprotocols/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-miniprotocols"
description = "Implementation of the Ouroboros network mini-protocols state-machines"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas-multiplexer/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-multiplexer"
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion 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.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas-traverse/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas-traverse"
description = "Utilities to traverse over multi-era block data"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down
2 changes: 1 addition & 1 deletion pallas/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "pallas"
description = "Rust-native building blocks for the Cardano blockchain ecosystem."
version = "0.13.0"
version = "0.13.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
Expand Down

0 comments on commit f29cc64

Please sign in to comment.