From 5bdcbf0fbb2f1fbfbf00420589143f77168b0798 Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Mon, 10 Apr 2023 16:19:51 +0200 Subject: [PATCH] Release v0.5.2 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e64355a..d873417f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 0.5.2 + +* Add Unix socket methods to `SockAddr` + (https://github.com/rust-lang/socket2/pull/403 and + https://github.com/rust-lang/socket2/pull/429). +* Added `SockAddr::as_storage` + (https://github.com/rust-lang/socket2/pull/417). +* Added `SockAddr::set_length` + (https://github.com/rust-lang/socket2/pull/428). +* Added `Protocol::UDPLITE` + (https://github.com/rust-lang/socket2/pull/427). +* Update windows-sys to 0.48 + (https://github.com/rust-lang/socket2/pull/422). +* Fixes Fuchsia target after it changes in 1.68, see + + (https://github.com/rust-lang/socket2/pull/423). +* Fixes musl target and adds it to the CI + (https://github.com/rust-lang/socket2/pull/426). + # 0.5.1 ## Added diff --git a/Cargo.toml b/Cargo.toml index 16eaff14..0b3f8375 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "socket2" -version = "0.5.1" +version = "0.5.2" authors = [ "Alex Crichton ", "Thomas de Zeeuw "