Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Aug 28, 2023
1 parent eb96ab0 commit 29b011e
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 27 deletions.
14 changes: 7 additions & 7 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-bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iroh-bytes"
version = "0.5.0"
version = "0.6.0-alpha.0"
edition = "2021"
readme = "README.md"
description = "blob and collection transfer support for iroh"
Expand Down
6 changes: 3 additions & 3 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.5.1"
version = "0.6.0-alpha.0"
edition = "2021"
readme = "README.md"
description = "gossip messages over broadcast trees"
Expand All @@ -25,7 +25,7 @@ rand = { version = "0.8.5", features = ["std_rng"] }
rand_core = "0.6.4"
serde = { version = "1.0.164", features = ["derive"] }
tracing = "0.1.37"
iroh-metrics = { path = "../iroh-metrics", version = "0.5.0" }
iroh-metrics = { path = "../iroh-metrics", version = "0.6.0-alpha.0" }

# net dependencies (optional)
futures = { version = "0.3.25", optional = true }
Expand All @@ -38,7 +38,7 @@ genawaiter = { version = "0.99.1", default-features = false, features = ["future

[dev-dependencies]
clap = { version = "4", features = ["derive"] }
iroh-test = { version = "0.5.1", path = "../iroh-test" }
iroh-test = { version = "0.6.0-alpha.0", path = "../iroh-test" }
rand_chacha = "0.3.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.4.0"
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.5.0"
version = "0.6.0-alpha.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.5.1"
version = "0.6.0-alpha.0"
edition = "2021"
readme = "README.md"
description = "networking support for iroh"
Expand Down Expand Up @@ -76,7 +76,7 @@ toml = { version = "0.7.3", optional = true }
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }

# metrics
iroh-metrics = { version = "0.5.0", path = "../iroh-metrics", optional = true }
iroh-metrics = { version = "0.6.0-alpha.0", path = "../iroh-metrics", optional = true }

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
netlink-packet-route = "0.17.0"
Expand All @@ -94,7 +94,7 @@ proptest = "1.2.0"
rand_chacha = "0.3.1"
tokio = { version = "1", features = ["io-util", "sync", "rt", "net", "fs", "macros", "time", "test-util"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
iroh-test = { version = "0.5.1", path = "../iroh-test" }
iroh-test = { version = "0.6.0-alpha.0", path = "../iroh-test" }

[[bench]]
name = "key"
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.5.1"
version = "0.6.0-alpha.0"
edition = "2021"
readme = "README.md"
description = "Iroh sync"
Expand All @@ -19,8 +19,8 @@ data-encoding = "2.4.0"
derive_more = { version = "1.0.0-beta.1", features = ["debug", "display", "from", "try_into"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
flume = "0.10"
iroh-bytes = { version = "0.5.0", path = "../iroh-bytes" }
iroh-metrics = { version = "0.5.0", path = "../iroh-metrics", optional = true }
iroh-bytes = { version = "0.6.0-alpha.0", path = "../iroh-bytes" }
iroh-metrics = { version = "0.6.0-alpha.0", path = "../iroh-metrics", optional = true }
once_cell = "1.18.0"
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
rand = "0.8.5"
Expand All @@ -37,7 +37,7 @@ redb = { version = "1.0.5", optional = true }
ouroboros = { version = "0.17", optional = true }

# net
iroh-net = { version = "0.5.1", optional = true, path = "../iroh-net" }
iroh-net = { version = "0.6.0-alpha.0", optional = true, path = "../iroh-net" }
tokio = { version = "1", optional = true, features = ["io-util", "sync"] }
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}
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.5.1"
version = "0.6.0-alpha.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.5.1"
version = "0.6.0-alpha.0"
edition = "2021"
readme = "README.md"
description = "Bytes. Distributed."
Expand All @@ -22,15 +22,15 @@ flume = "0.10.14"
futures = "0.3.25"
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
hex = { version = "0.4.3" }
iroh-bytes = { version = "0.5.0", path = "../iroh-bytes" }
iroh-bytes = { version = "0.6.0-alpha.0", path = "../iroh-bytes" }
iroh-io = { version = "0.2.2" }
iroh-metrics = { version = "0.5.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.5.1", path = "../iroh-net" }
iroh-metrics = { version = "0.6.0-alpha.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.6.0-alpha.0", path = "../iroh-net" }
itertools = "0.11.0"
num_cpus = { version = "1.15.0" }
portable-atomic = "1"
iroh-sync = { version = "0.5.1", path = "../iroh-sync" }
iroh-gossip = { version = "0.5.1", path = "../iroh-gossip" }
iroh-sync = { version = "0.6.0-alpha.0", path = "../iroh-sync" }
iroh-gossip = { version = "0.6.0-alpha.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 Expand Up @@ -80,7 +80,7 @@ anyhow = { version = "1", features = ["backtrace"] }
bytes = "1"
duct = "0.13.6"
genawaiter = { version = "0.99", features = ["futures03"] }
iroh-test = { version = "0.5.1", path = "../iroh-test" }
iroh-test = { version = "0.6.0-alpha.0", path = "../iroh-test" }
nix = "0.26.2"
proptest = "1.2.0"
regex = { version = "1.7.1", features = ["std"] }
Expand Down

0 comments on commit 29b011e

Please sign in to comment.