From 54bbc412d90e9a0b69818aaaefe653a7454a31b3 Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Fri, 16 Oct 2020 23:51:18 +0200 Subject: [PATCH] v0.14.0 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 236dcb5fc..c1a14f2f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tide" -version = "0.13.0" +version = "0.14.0" description = "A minimal and pragmatic Rust web application framework built for rapid development" authors = [ "Aaron Turon ", diff --git a/README.md b/README.md index 722febb6b..161f9251a 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ runtime. After running `cargo init` add the following lines to your ```toml # Example, use the version numbers you need -tide = "0.13.0" +tide = "0.14.0" async-std = { version = "1.6.0", features = ["attributes"] } ``` diff --git a/src/lib.rs b/src/lib.rs index f47041964..24f399b14 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -10,7 +10,7 @@ //! //! ```toml //! # Example, use the version numbers you need -//! tide = "0.13.0" +//! tide = "0.14.0" //! async-std = { version = "1.6.0", features = ["attributes"] } //!``` //!