diff --git a/README.md b/README.md index 091d1d90cec..fb567dd6a23 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.39.3", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index f593cb3335c..4082b1b9392 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,10 @@ +# 1.39.3 (August 17th, 2024) + +This release fixes a regression where the unix socket api stopped accepting +the abstract socket namespace. ([#6772]) + +[#6772]: https://github.com/tokio-rs/tokio/pull/6772 + # 1.39.2 (July 27th, 2024) This release fixes a regression where the `select!` macro stopped accepting diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 12a8c698570..37dd5e7b7b8 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -6,7 +6,7 @@ name = "tokio" # - README.md # - Update CHANGELOG.md. # - Create "v1.x.y" git tag. -version = "1.39.2" +version = "1.39.3" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 091d1d90cec..fb567dd6a23 100644 --- a/tokio/README.md +++ b/tokio/README.md @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.39.2", features = ["full"] } +tokio = { version = "1.39.3", features = ["full"] } ``` Then, on your main.rs: