From b5cb16c74ae6dc755bf3826a5d63bf348e1a1cdf Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Mon, 18 Mar 2019 10:34:05 +0800 Subject: [PATCH] Bump to beta 2 for development --- 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 b3b3b09..f60c1de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.5.0-beta-1" +version = "0.5.0-beta-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 5d17264..ee7fa13 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-beta-1" +rocket_cors = "0.5.0-beta-2" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index d173720..886bf51 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-beta-1" +rocket_cors = "0.5.0-beta-2" ``` 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-beta-1", default-features = false } +rocket_cors = { version = "0.5.0-beta-2", default-features = false } ``` ## Usage