From 214843f671fae401e63ad61f93e4012fb057b6aa Mon Sep 17 00:00:00 2001 From: noah Date: Mon, 27 May 2024 15:28:51 -0500 Subject: [PATCH] chore: prepare v0.5.0 --- Cargo.toml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8bdec82e..85ce27dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "tokio-uring" -version = "0.4.0" +version = "0.5.0" authors = ["Tokio Contributors "] edition = "2018" readme = "README.md" license = "MIT" -documentation = "https://docs.rs/tokio-uring/0.4.0/tokio-uring" +documentation = "https://docs.rs/tokio-uring/0.5.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 fe99b19f..dced130b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ runtime internally manages the main Tokio runtime and a `io-uring` driver. In your Cargo.toml: ```toml [dependencies] -tokio-uring = { version = "0.4.0" } +tokio-uring = { version = "0.5.0" } ``` In your main.rs: ```rust