From a5e4fbae3b2065cc1a6f01f2f11382f5cc603b69 Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Sat, 18 Nov 2023 10:11:49 +0800 Subject: [PATCH] 0.6.0 --- 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 3b3400c..7e10f4b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.6.0-alpha3" +version = "0.6.0" 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 d586a74..4ece13f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ If you are using Rocket 0.3, use the `0.3.0` version of this crate. Add the following to Cargo.toml: ```toml -rocket_cors = "0.6.0-alpha3" +rocket_cors = "0.6.0" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index 2592c3c..5b91456 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ If you are using Rocket 0.3, use the `0.3.0` version of this crate. Add the following to Cargo.toml: ```toml -rocket_cors = "0.6.0-alpha3" +rocket_cors = "0.6.0" ``` To use the latest `master` branch, for example: @@ -34,7 +34,7 @@ the [`CorsOptions`] struct that is described below. If you would like to disable change your `Cargo.toml` to: ```toml -rocket_cors = { version = "0.6.0-alpha3", default-features = false } +rocket_cors = { version = "0.6.0", default-features = false } ``` ## Usage