Skip to content

Commit 71b5903

Browse files
chore: increase version numbers and update (#2821)
## Description increases version numbers for `iroh-base` and `iroh-metrics`, which have been published, and updates references to them ## Breaking Changes <!-- Optional, if there are any breaking changes document them, including how to migrate older code. --> ## Notes & open questions <!-- Any notes, remarks or open questions you have to make about the PR. --> ## Change checklist - [x] Self-review. - [ ] Documentation updates following the [style guide](https://rust-lang.github.io/rfcs/1574-more-api-documentation-conventions.html#appendix-a-full-conventions-text), if relevant. - [ ] Tests if relevant. - [ ] All breaking changes documented.
1 parent 844b146 commit 71b5903

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

iroh-base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-base"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-blobs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ futures-lite = "2.3"
2727
genawaiter = { version = "0.99.1", features = ["futures03"] }
2828
hashlink = { version = "0.9.0", optional = true }
2929
hex = "0.4.3"
30-
iroh-base = { version = "0.26.0", features = ["redb"], path = "../iroh-base" }
30+
iroh-base = { version = "0.27.0", features = ["redb"], path = "../iroh-base" }
3131
iroh-io = { version = "0.6.0", features = ["stats"] }
32-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", default-features = false }
32+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", default-features = false }
3333
iroh-net = { version = "0.26.0", path = "../iroh-net" }
3434
num_cpus = "1.15.0"
3535
oneshot = "0.1.8"

iroh-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ human-time = "0.1.6"
4242
indicatif = { version = "0.17", features = ["tokio"] }
4343
iroh = { version = "0.26.0", path = "../iroh", features = ["metrics"] }
4444
iroh-gossip = { version = "0.26.0", path = "../iroh-gossip" }
45-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
45+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
4646
parking_lot = "0.12.1"
4747
pkarr = { version = "2.2.0", default-features = false }
4848
portable-atomic = "1"

iroh-dns-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ governor = "0.6.3"
2424
hickory-proto = "=0.25.0-alpha.2"
2525
hickory-server = { version = "=0.25.0-alpha.2", features = ["dns-over-rustls"] }
2626
http = "1.0.0"
27-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
27+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
2828
lru = "0.12.3"
2929
mainline = "2.0.1"
3030
parking_lot = "0.12.1"

iroh-docs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ futures-buffered = "0.2.4"
2525
futures-lite = "2.3.0"
2626
futures-util = { version = "0.3.25" }
2727
hex = "0.4"
28-
iroh-base = { version = "0.26.0", path = "../iroh-base" }
28+
iroh-base = { version = "0.27.0", path = "../iroh-base" }
2929
iroh-blobs = { version = "0.26.0", path = "../iroh-blobs", optional = true, features = ["downloader"] }
3030
iroh-gossip = { version = "0.26.0", path = "../iroh-gossip", optional = true }
31-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", default-features = false }
31+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", default-features = false }
3232
iroh-net = { version = "0.26.0", optional = true, path = "../iroh-net" }
3333
lru = "0.12"
3434
num_enum = "0.7"

iroh-gossip/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ bytes = { version = "1.7", features = ["serde"] }
2222
derive_more = { version = "1.0.0", features = ["add", "debug", "deref", "display", "from", "try_into", "into"] }
2323
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2424
indexmap = "2.0"
25-
iroh-base = { version = "0.26.0", path = "../iroh-base" }
26-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
25+
iroh-base = { version = "0.27.0", path = "../iroh-base" }
26+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
2727
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
2828
rand = { version = "0.8.5", features = ["std_rng"] }
2929
rand_core = "0.6.4"

iroh-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-metrics"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "metrics for iroh"

iroh-net/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ http-body-util = "0.1.0"
3838
hyper = { version = "1", features = ["server", "client", "http1"] }
3939
hyper-util = "0.1.1"
4040
igd-next = { version = "0.15.1", features = ["aio_tokio"] }
41-
iroh-base = { version = "0.26.0", path = "../iroh-base", features = ["key"] }
41+
iroh-base = { version = "0.27.0", path = "../iroh-base", features = ["key"] }
4242
libc = "0.2.139"
4343
num_enum = "0.7"
4444
once_cell = "1.18.0"
@@ -87,7 +87,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = tr
8787
tokio-rustls-acme = { version = "0.4", optional = true }
8888

8989
# metrics
90-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", default-features = false }
90+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", default-features = false }
9191
strum = { version = "0.26.2", features = ["derive"] }
9292

9393
# local-swarm-discovery

iroh/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ futures-util = "0.3"
2727
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
2828
hex = { version = "0.4.3" }
2929
iroh-blobs = { version = "0.26.0", path = "../iroh-blobs", features = ["downloader"] }
30-
iroh-base = { version = "0.26.0", path = "../iroh-base", features = ["key"] }
30+
iroh-base = { version = "0.27.0", path = "../iroh-base", features = ["key"] }
3131
iroh-io = { version = "0.6.0", features = ["stats"] }
32-
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", optional = true }
32+
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", optional = true }
3333
iroh-net = { version = "0.26.0", path = "../iroh-net", features = ["discovery-local-network"] }
3434
nested_enum_utils = "0.1.0"
3535
num_cpus = { version = "1.15.0" }

0 commit comments

Comments
 (0)