Skip to content

Commit

Permalink
chore: increase version numbers and update (#2821)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
divagant-martian authored Oct 21, 2024
1 parent 844b146 commit 71b5903
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 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.26.0"
version = "0.27.0"
edition = "2021"
readme = "README.md"
description = "base type and utilities for Iroh"
Expand Down
4 changes: 2 additions & 2 deletions iroh-blobs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ futures-lite = "2.3"
genawaiter = { version = "0.99.1", features = ["futures03"] }
hashlink = { version = "0.9.0", optional = true }
hex = "0.4.3"
iroh-base = { version = "0.26.0", features = ["redb"], path = "../iroh-base" }
iroh-base = { version = "0.27.0", features = ["redb"], path = "../iroh-base" }
iroh-io = { version = "0.6.0", features = ["stats"] }
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", default-features = false }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", default-features = false }
iroh-net = { version = "0.26.0", path = "../iroh-net" }
num_cpus = "1.15.0"
oneshot = "0.1.8"
Expand Down
2 changes: 1 addition & 1 deletion iroh-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ human-time = "0.1.6"
indicatif = { version = "0.17", features = ["tokio"] }
iroh = { version = "0.26.0", path = "../iroh", features = ["metrics"] }
iroh-gossip = { version = "0.26.0", path = "../iroh-gossip" }
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
parking_lot = "0.12.1"
pkarr = { version = "2.2.0", default-features = false }
portable-atomic = "1"
Expand Down
2 changes: 1 addition & 1 deletion iroh-dns-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ governor = "0.6.3"
hickory-proto = "=0.25.0-alpha.2"
hickory-server = { version = "=0.25.0-alpha.2", features = ["dns-over-rustls"] }
http = "1.0.0"
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
lru = "0.12.3"
mainline = "2.0.1"
parking_lot = "0.12.1"
Expand Down
4 changes: 2 additions & 2 deletions iroh-docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ futures-buffered = "0.2.4"
futures-lite = "2.3.0"
futures-util = { version = "0.3.25" }
hex = "0.4"
iroh-base = { version = "0.26.0", path = "../iroh-base" }
iroh-base = { version = "0.27.0", path = "../iroh-base" }
iroh-blobs = { version = "0.26.0", path = "../iroh-blobs", optional = true, features = ["downloader"] }
iroh-gossip = { version = "0.26.0", path = "../iroh-gossip", optional = true }
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", default-features = false }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", default-features = false }
iroh-net = { version = "0.26.0", optional = true, path = "../iroh-net" }
lru = "0.12"
num_enum = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions iroh-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ bytes = { version = "1.7", features = ["serde"] }
derive_more = { version = "1.0.0", features = ["add", "debug", "deref", "display", "from", "try_into", "into"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
indexmap = "2.0"
iroh-base = { version = "0.26.0", path = "../iroh-base" }
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics" }
iroh-base = { version = "0.27.0", path = "../iroh-base" }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics" }
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
rand = { version = "0.8.5", features = ["std_rng"] }
rand_core = "0.6.4"
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.26.0"
version = "0.27.0"
edition = "2021"
readme = "README.md"
description = "metrics for iroh"
Expand Down
4 changes: 2 additions & 2 deletions iroh-net/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ http-body-util = "0.1.0"
hyper = { version = "1", features = ["server", "client", "http1"] }
hyper-util = "0.1.1"
igd-next = { version = "0.15.1", features = ["aio_tokio"] }
iroh-base = { version = "0.26.0", path = "../iroh-base", features = ["key"] }
iroh-base = { version = "0.27.0", path = "../iroh-base", features = ["key"] }
libc = "0.2.139"
num_enum = "0.7"
once_cell = "1.18.0"
Expand Down Expand Up @@ -87,7 +87,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = tr
tokio-rustls-acme = { version = "0.4", optional = true }

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

# local-swarm-discovery
Expand Down
4 changes: 2 additions & 2 deletions iroh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ futures-util = "0.3"
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
hex = { version = "0.4.3" }
iroh-blobs = { version = "0.26.0", path = "../iroh-blobs", features = ["downloader"] }
iroh-base = { version = "0.26.0", path = "../iroh-base", features = ["key"] }
iroh-base = { version = "0.27.0", path = "../iroh-base", features = ["key"] }
iroh-io = { version = "0.6.0", features = ["stats"] }
iroh-metrics = { version = "0.26.0", path = "../iroh-metrics", optional = true }
iroh-metrics = { version = "0.27.0", path = "../iroh-metrics", optional = true }
iroh-net = { version = "0.26.0", path = "../iroh-net", features = ["discovery-local-network"] }
nested_enum_utils = "0.1.0"
num_cpus = { version = "1.15.0" }
Expand Down

0 comments on commit 71b5903

Please sign in to comment.