diff --git a/CHANGELOG.md b/CHANGELOG.md index 47537e1..cf2148c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,9 +22,14 @@ Line wrap the file at 100 chars. Th ## [Unreleased] + + +## [0.4.0] - 2024-01-02 ### Changed - Add (optional) statsd metrics reporting support to `tcp2udp` binary and library module when the `statsd` cargo feature is enabled. +- Breaking: Make options structs and error enums `#[non_exhaustive]` in order to allow adding more + fields to them later without being breaking changes then. ## [0.3.1] - 2023-10-25 diff --git a/Cargo.lock b/Cargo.lock index 188259c..572d9a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -603,7 +603,7 @@ dependencies = [ [[package]] name = "udp-over-tcp" -version = "0.3.1" +version = "0.4.0" dependencies = [ "cadence", "clap", diff --git a/Cargo.toml b/Cargo.toml index 6f7af5c..c639698 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udp-over-tcp" -version = "0.3.1" +version = "0.4.0" authors = ["Mullvad VPN"] license = "MIT OR Apache-2.0" description = "Tunnel UDP traffic inside a TCP stream. Each datagram is prefixed with a 16 bit unsigned integer containing the length"