Skip to content

Commit

Permalink
chore: prepare tokio-uring v0.3.0 (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah-Kennedy authored Mar 2, 2022
1 parent 3176149 commit 56d1882
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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])
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "tokio-uring"
version = "0.2.0"
version = "0.3.0"
authors = ["Tokio Contributors <team@tokio.rs>"]
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 = """
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 56d1882

Please sign in to comment.