From 00e1399b1f2471e92241d23456a26d89fadc3deb Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Mon, 18 Mar 2019 10:32:24 +0800 Subject: [PATCH] Release 0.5.0-beta-1 --- 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 f45ac48..b3b3b09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.5.0" +version = "0.5.0-beta-1" 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 5d2c2d0..5d17264 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ work, but they are subject to the minimum that Rocket sets. Add the following to Cargo.toml: ```toml -rocket_cors = "0.5.0" +rocket_cors = "0.5.0-beta-1" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index 2158543..d173720 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ might work, but they are subject to the minimum that Rocket sets. Add the following to Cargo.toml: ```toml -rocket_cors = "0.5.0" +rocket_cors = "0.5.0-beta-1" ``` To use the latest `master` branch, for example: @@ -45,7 +45,7 @@ the [`CorsOptions`] struct that is described below. If you would like to disable change your `Cargo.toml` to: ```toml -rocket_cors = { version = "0.5.0", default-features = false } +rocket_cors = { version = "0.5.0-beta-1", default-features = false } ``` ## Usage