Skip to content

Commit 0773e30

Browse files
chore: Release
1 parent 10af401 commit 0773e30

File tree

11 files changed

+52
-35
lines changed

11 files changed

+52
-35
lines changed

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,32 @@
22

33
All notable changes to iroh will be documented in this file.
44

5-
## [0.11.0](https://github.com/n0-computer/iroh/compare/v0.10.0..0.11.0) - 2023-11-08
5+
## [0.11.0](https://github.com/n0-computer/iroh/compare/v0.10.0..0.11.0) - 2023-11-17
66

77
### ⛰️ Features
88

9-
- *(iroh)* Store rpc port in iroh data dir - ([ed85fb0](https://github.com/n0-computer/iroh/commit/ed85fb073106e18d165e40ace1aee1c26377f6d3))
9+
- *(iroh)* Store rpc port in iroh data dir ([#1783](https://github.com/n0-computer/iroh/issues/1783)) - ([d471477](https://github.com/n0-computer/iroh/commit/d471477659cd9018bdaebdfa3c0146451d5d3b43))
10+
- *(iroh)* Make `out` argument required for `iroh get` ([#1786](https://github.com/n0-computer/iroh/issues/1786)) - ([0e0f641](https://github.com/n0-computer/iroh/commit/0e0f6411d0fbe88559db132a06b0ccf64bf831f4))
11+
- *(iroh)* Allow full and short hash printing in the cli ([#1795](https://github.com/n0-computer/iroh/issues/1795)) - ([018772c](https://github.com/n0-computer/iroh/commit/018772ce2f8a06f98447160f33a9720da4ea5939))
12+
- Add `Doc::import_file` and `Doc::export_file` ([#1793](https://github.com/n0-computer/iroh/issues/1793)) - ([fe7fc50](https://github.com/n0-computer/iroh/commit/fe7fc506c7ac5bc7be518d407829580d880b0f62))
13+
14+
### 🐛 Bug Fixes
15+
16+
- *(iroh-sync)* Ensure the authors table exists ([#1807](https://github.com/n0-computer/iroh/issues/1807)) - ([39ed64e](https://github.com/n0-computer/iroh/commit/39ed64e4492393b133398f49a957614fd3535968))
17+
- Drop temp tag after doc insert ([#1810](https://github.com/n0-computer/iroh/issues/1810)) - ([a608fe8](https://github.com/n0-computer/iroh/commit/a608fe8c7562286629a41d70fbbef05382443649))
18+
- Netsim should fail on all failed tests ([#1816](https://github.com/n0-computer/iroh/issues/1816)) - ([199a677](https://github.com/n0-computer/iroh/commit/199a677121ac469634ba1c2d6c6d412f75c1e3c8))
1019

1120
### 🚜 Refactor
1221

22+
- *(iroh)* Restructure cli modules to match command structure ([#1799](https://github.com/n0-computer/iroh/issues/1799)) - ([c1aeeb1](https://github.com/n0-computer/iroh/commit/c1aeeb12898d86bce901ec6ec9d54ada026c7adf))
23+
- *(iroh)* Add `--start` option to CLI commands ([#1802](https://github.com/n0-computer/iroh/issues/1802)) - ([10af401](https://github.com/n0-computer/iroh/commit/10af4018302ee62fdad8fbbbe8c3902a9082bb35))
24+
- *(logging)* Log hairpin results at debug level ([#1809](https://github.com/n0-computer/iroh/issues/1809)) - ([ca8a983](https://github.com/n0-computer/iroh/commit/ca8a98383bc69d672073edb0df8086ae83a0b893))
1325
- Common base library ([#1780](https://github.com/n0-computer/iroh/issues/1780)) - ([de58d71](https://github.com/n0-computer/iroh/commit/de58d71998e49ed14c99b9765fc51d37965a95d9))
26+
- More renaming of the term peer id to node id ([#1789](https://github.com/n0-computer/iroh/issues/1789)) - ([53f1b61](https://github.com/n0-computer/iroh/commit/53f1b616c75bcc81c1b7493a4365c22340989a5d))
27+
28+
### ⚙️ Miscellaneous Tasks
29+
30+
- Update dependencies ([#1787](https://github.com/n0-computer/iroh/issues/1787)) - ([697b80c](https://github.com/n0-computer/iroh/commit/697b80cbe7cf17a8f39b2ab4ee4044d7074135e3))
1431

1532
## [0.10.0](https://github.com/n0-computer/iroh/compare/v0.9.0..v0.10.0) - 2023-11-08
1633

Cargo.lock

Lines changed: 9 additions & 9 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.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-bytes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-bytes"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "blob and collection transfer support for iroh"
@@ -25,7 +25,7 @@ flume = "0.11"
2525
futures = "0.3.25"
2626
genawaiter = { version = "0.99.1", features = ["futures03"] }
2727
hex = "0.4.3"
28-
iroh-base = { version = "0.10.0", path = "../iroh-base" }
28+
iroh-base = { version = "0.11.0", path = "../iroh-base" }
2929
iroh-io = { version = "0.3.0", features = ["stats"] }
3030
num_cpus = "1.15.0"
3131
once_cell = "1.17.0"

iroh-gossip/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-gossip"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "gossip messages over broadcast trees"
@@ -28,12 +28,12 @@ rand = { version = "0.8.5", features = ["std_rng"] }
2828
rand_core = "0.6.4"
2929
serde = { version = "1.0.164", features = ["derive"] }
3030
tracing = "0.1"
31-
iroh-metrics = { version = "0.10.0", path = "../iroh-metrics" }
32-
iroh-base = { version = "0.10.0", path = "../iroh-base" }
31+
iroh-metrics = { version = "0.11.0", path = "../iroh-metrics" }
32+
iroh-base = { version = "0.11.0", path = "../iroh-base" }
3333

3434
# net dependencies (optional)
3535
futures = { version = "0.3.25", optional = true }
36-
iroh-net = { path = "../iroh-net", version = "0.10.0", optional = true }
36+
iroh-net = { path = "../iroh-net", version = "0.11.0", optional = true }
3737
quinn = { version = "0.10", optional = true }
3838
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
3939
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }

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.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "metrics for iroh"

iroh-net/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-net"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "networking support for iroh"
@@ -29,7 +29,7 @@ ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2929
flume = "0.11"
3030
futures = "0.3.25"
3131
governor = "0.6.0"
32-
iroh-base = { version = "0.10.0", path = "../iroh-base" }
32+
iroh-base = { version = "0.11.0", path = "../iroh-base" }
3333
hex = "0.4.3"
3434
hostname = "0.3.1"
3535
http = "0.2.9"
@@ -81,7 +81,7 @@ toml = { version = "0.8", optional = true }
8181
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
8282

8383
# metrics
84-
iroh-metrics = { version = "0.10.0", path = "../iroh-metrics", default-features = false }
84+
iroh-metrics = { version = "0.11.0", path = "../iroh-metrics", default-features = false }
8585

8686
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
8787
netlink-packet-core = "0.7.0"

iroh-net/bench/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-net-bench"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false

iroh-sync/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-sync"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh sync"
@@ -21,8 +21,8 @@ data-encoding = "2.4.0"
2121
derive_more = { version = "1.0.0-beta.1", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
2222
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2323
flume = "0.11"
24-
iroh-base = { version = "0.10.0", path = "../iroh-base" }
25-
iroh-metrics = { version = "0.10.0", path = "../iroh-metrics", optional = true }
24+
iroh-base = { version = "0.11.0", path = "../iroh-base" }
25+
iroh-metrics = { version = "0.11.0", path = "../iroh-metrics", optional = true }
2626
num_enum = "0.7"
2727
once_cell = "1.18.0"
2828
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
@@ -43,7 +43,7 @@ redb = { version = "1.0.5", optional = true }
4343
ouroboros = { version = "0.18", optional = true }
4444

4545
# net
46-
iroh-net = { version = "0.10.0", optional = true, path = "../iroh-net" }
46+
iroh-net = { version = "0.11.0", optional = true, path = "../iroh-net" }
4747
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
4848
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}
4949
quinn = { version = "0.10", optional = true }

iroh-test/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-test"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Internal utilities to support testing of iroh."

0 commit comments

Comments
 (0)