Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Mar 25, 2024
1 parent 9d40459 commit 024a9b8
Show file tree
Hide file tree
Showing 12 changed files with 206 additions and 62 deletions.
190 changes: 167 additions & 23 deletions CHANGELOG.md

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion iroh-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-base"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "base type and utilities for Iroh"
Expand Down
8 changes: 4 additions & 4 deletions iroh-bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-bytes"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "blob and collection transfer support for iroh"
Expand All @@ -27,10 +27,10 @@ futures = "0.3.25"
futures-buffered = "0.2.4"
genawaiter = { version = "0.99.1", features = ["futures03"] }
hex = "0.4.3"
iroh-base = { version = "0.12.0", features = ["redb"], path = "../iroh-base" }
iroh-base = { version = "0.13.0", features = ["redb"], path = "../iroh-base" }
iroh-io = { version = "0.4.0", features = ["stats"] }
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.12.0", path = "../iroh-net", optional = true }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.13.0", path = "../iroh-net", optional = true }
num_cpus = "1.15.0"
once_cell = "1.17.0"
parking_lot = { version = "0.12.1", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions iroh-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-cli"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "Bytes. Distributed."
Expand Down Expand Up @@ -33,8 +33,8 @@ futures = "0.3.30"
hex = "0.4.3"
human-time = { version = "0.1.6" }
indicatif = { version = "0.17", features = ["tokio"] }
iroh = { version = "0.12.0", path = "../iroh", features = ["metrics"] }
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics" }
iroh = { version = "0.13.0", path = "../iroh", features = ["metrics"] }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics" }
multibase = { version = "0.9.1" }
num_cpus = "1.16.0"
parking_lot = "0.12.1"
Expand Down
8 changes: 4 additions & 4 deletions iroh-gossip/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-gossip"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "gossip messages over broadcast trees"
Expand Down Expand Up @@ -28,12 +28,12 @@ rand = { version = "0.8.5", features = ["std_rng"] }
rand_core = "0.6.4"
serde = { version = "1.0.164", features = ["derive"] }
tracing = "0.1"
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics" }
iroh-base = { version = "0.12.0", path = "../iroh-base" }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics" }
iroh-base = { version = "0.13.0", path = "../iroh-base" }

# net dependencies (optional)
futures = { version = "0.3.25", optional = true }
iroh-net = { path = "../iroh-net", version = "0.12.0", optional = true }
iroh-net = { path = "../iroh-net", version = "0.13.0", optional = true }
quinn = { version = "0.10", optional = true }
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }
Expand Down
2 changes: 1 addition & 1 deletion iroh-metrics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-metrics"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "metrics for iroh"
Expand Down
6 changes: 3 additions & 3 deletions iroh-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-net"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "networking support for iroh"
Expand Down Expand Up @@ -35,7 +35,7 @@ http-body-util = "0.1.0"
hyper = { version = "1", features = ["server", "client", "http1"] }
hyper-util = "0.1.1"
igd = { version = "0.12.1", features = ["aio"] }
iroh-base = { version = "0.12.0", path = "../iroh-base", features = ["key"] }
iroh-base = { version = "0.13.0", path = "../iroh-base", features = ["key"] }
libc = "0.2.139"
num_enum = "0.7"
once_cell = "1.18.0"
Expand Down Expand Up @@ -81,7 +81,7 @@ toml = { version = "0.8", optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }

# metrics
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics", default-features = false }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics", default-features = false }

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
netlink-packet-core = "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion iroh-net/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-net-bench"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand Down
8 changes: 4 additions & 4 deletions iroh-sync/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-sync"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "Iroh sync"
Expand All @@ -21,8 +21,8 @@ data-encoding = "2.4.0"
derive_more = { version = "1.0.0-beta.1", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
flume = "0.11"
iroh-base = { version = "0.12.0", path = "../iroh-base" }
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics", optional = true }
iroh-base = { version = "0.13.0", path = "../iroh-base" }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics", optional = true }
num_enum = "0.7"
once_cell = "1.18.0"
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
Expand All @@ -43,7 +43,7 @@ redb = { version = "1.5.1" }
ouroboros = { version = "0.18" }

# net
iroh-net = { version = "0.12.0", optional = true, path = "../iroh-net" }
iroh-net = { version = "0.13.0", optional = true, path = "../iroh-net" }
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}
quinn = { version = "0.10", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion iroh-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-test"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "Internal utilities to support testing of iroh."
Expand Down
14 changes: 7 additions & 7 deletions iroh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh"
version = "0.12.0"
version = "0.13.0"
edition = "2021"
readme = "README.md"
description = "Bytes. Distributed."
Expand All @@ -26,15 +26,15 @@ futures = "0.3.25"
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
hashlink = "0.8.4"
hex = { version = "0.4.3" }
iroh-bytes = { version = "0.12.0", path = "../iroh-bytes", features = ["downloader"] }
iroh-base = { version = "0.12.0", path = "../iroh-base", features = ["key"] }
iroh-bytes = { version = "0.13.0", path = "../iroh-bytes", features = ["downloader"] }
iroh-base = { version = "0.13.0", path = "../iroh-base", features = ["key"] }
iroh-io = { version = "0.4.0", features = ["stats"] }
iroh-metrics = { version = "0.12.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.12.0", path = "../iroh-net" }
iroh-metrics = { version = "0.13.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.13.0", path = "../iroh-net" }
num_cpus = { version = "1.15.0" }
portable-atomic = "1"
iroh-sync = { version = "0.12.0", path = "../iroh-sync" }
iroh-gossip = { version = "0.12.0", path = "../iroh-gossip" }
iroh-sync = { version = "0.13.0", path = "../iroh-sync" }
iroh-gossip = { version = "0.13.0", path = "../iroh-gossip" }
once_cell = "1.18.0"
parking_lot = "0.12.1"
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
Expand Down

0 comments on commit 024a9b8

Please sign in to comment.