Skip to content

Commit cdf3b24

Browse files
chore: Prepare 0.7.0
With an inaugural changelog entry.
1 parent b8c668f commit cdf3b24

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
4+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
6+
## [0.7.0] - 2026-01-09
7+
8+
### Changes
9+
10+
- Breaking: make `noise::Tunn::new` infallible
11+
- Upgrade vulnerable dependencies: ring, x25519-dalek
12+
- Fix a compilation error on freebsd
13+
- Fix incorrect socket type in `device::Peer::connect_endpoint`

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.

boringtun-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "boringtun-cli"
33
description = "an implementation of the WireGuard® protocol designed for portability and speed"
4-
version = "0.6.0"
4+
version = "0.7.0"
55
authors = ["Noah Kennedy <[email protected]>", "Andy Grover <[email protected]>", "Jeff Hiner <[email protected]>"]
66
license = "BSD-3-Clause"
77
readme = "../README.md"
88
repository = "https://github.com/cloudflare/boringtun"
9-
documentation = "https://docs.rs/boringtun/0.5.2/boringtun/"
9+
documentation = "https://docs.rs/boringtun/0.7.0/boringtun/"
1010
edition = "2021"
1111

1212
[dependencies]
@@ -17,6 +17,6 @@ tracing-subscriber = "0.3.9"
1717
tracing-appender = "0.2.1"
1818

1919
[dependencies.boringtun]
20-
version = "0.6.0"
20+
version = "0.7.0"
2121
path = "../boringtun"
2222
features = ["device"]

boringtun/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "boringtun"
33
description = "an implementation of the WireGuard® protocol designed for portability and speed"
4-
version = "0.6.0"
4+
version = "0.7.0"
55
authors = [
66
"Noah Kennedy <[email protected]>",
77
"Andy Grover <[email protected]>",
@@ -10,7 +10,7 @@ authors = [
1010
license = "BSD-3-Clause"
1111
readme = "../README.md"
1212
repository = "https://github.com/cloudflare/boringtun"
13-
documentation = "https://docs.rs/boringtun/0.5.2/boringtun/"
13+
documentation = "https://docs.rs/boringtun/0.7.0/boringtun/"
1414
edition = "2018"
1515

1616
[features]

0 commit comments

Comments
 (0)