diff --git a/CHANGELOG.md b/CHANGELOG.md index 121c8292..d099ca08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ -# 0.2.0 (January 9th, 2021) +# 0.3.0 (March 2nd, 2022) +### Added +net: add unix stream & listener ([#74]) +net: add tcp and udp support ([#40]) + +[#66]: https://github.com/tokio-rs/tokio-uring/pull/74 +[#66]: https://github.com/tokio-rs/tokio-uring/pull/40 + +# 0.2.0 (January 9th, 2022) ### Fixed fs: fix error handling related to changes in rustc ([#69]) diff --git a/Cargo.toml b/Cargo.toml index fbba321e..41b8254d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tokio-uring" -version = "0.2.0" +version = "0.3.0" authors = ["Tokio Contributors "] edition = "2018" readme = "README.md" license = "MIT" -documentation = "https://docs.rs/tokio-uring/0.2.0/tokio-uring" +documentation = "https://docs.rs/tokio-uring/0.3.0/tokio-uring" repository = "https://github.com/tokio-rs/tokio-uring" homepage = "https://tokio.rs" description = """ diff --git a/README.md b/README.md index 5725815e..ce4c11fe 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This crate provides [`io-uring`] for [Tokio] by exposing a new Runtime that is compatible with Tokio but also can drive [`io-uring`]-backed resources. Any library that works with [Tokio] also works with `tokio-uring`. The crate -provides new resource types ([`fs::File`]) that work with [`io-uring`]. +provides new resource types that work with [`io-uring`]. [`io-uring`]: https://unixism.net/loti/ [Tokio]: https://github.com/tokio-rs/tokio @@ -46,7 +46,7 @@ In particular `5.4.0` does not work (This is standard on Ubuntu 20.4). However ` ## Project status The `tokio-uring` project is still very young. Currently, we are focusing on -supporting filesystem operations. Eventually, we will add safe APIs for all +supporting filesystem and network operations. Eventually, we will add safe APIs for all io-uring compatible operations. ## License