From 02c7fcf5198b734617ed5702ab9b6d7024fac93c Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Wed, 21 Nov 2018 12:18:58 +0800 Subject: [PATCH] Bump to 0.4.0-rc.2 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 56517be..2060ae6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.4.0-rc.1" +version = "0.4.0-rc.2" license = "MIT/Apache-2.0" authors = ["Yong Wen Chua "] description = "Cross-origin resource sharing (CORS) for Rocket.rs applications" diff --git a/README.md b/README.md index 88d3ddd..394b61b 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ work, but they are subject to the minimum that Rocket sets. Add the following to Cargo.toml: ```toml -rocket_cors = "0.4.0-rc.1" +rocket_cors = "0.4.0-rc.2" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index 7bc206f..afda80e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ //! Add the following to Cargo.toml: //! //! ```toml -//! rocket_cors = "0.4.0-rc.1" +//! rocket_cors = "0.4.0-rc.2" //! ``` //! //! To use the latest `master` branch, for example: @@ -45,7 +45,7 @@ //! your `Cargo.toml` to: //! //! ```toml -//! rocket_cors = { version = "0.4.0-rc.1", default-features = false } +//! rocket_cors = { version = "0.4.0-rc.2", default-features = false } //! ``` //! //! ## Usage