From 985098dd8f3b052716111eaa872d184cc21a1a68 Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Sun, 26 Mar 2023 05:59:19 +0800 Subject: [PATCH] Release 0.6.0-alpha2 --- CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b7cdb5..c2053de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## 0.6.0-alpha1 (2022-01-13) +## 0.6.0-alpha2 (2022-01-13) ## What's Changed * Use async version from rocket's master branch by @HenningHolmDE in https://github.com/lawliet89/rocket_cors/pull/81 * fix: Update to latest master Rocket version by @DusterTheFirst in https://github.com/lawliet89/rocket_cors/pull/85 @@ -29,7 +29,7 @@ * @torkleyy made their first contribution in https://github.com/lawliet89/rocket_cors/pull/104 * @somehowchris made their first contribution in https://github.com/lawliet89/rocket_cors/pull/105 -**Full Changelog**: https://github.com/lawliet89/rocket_cors/compare/v0.5.2...v0.6.0-alpha1 +**Full Changelog**: https://github.com/lawliet89/rocket_cors/compare/v0.5.2...v0.6.0-alpha2 ## 0.5.2 (2020-03-18) ### Improvements diff --git a/Cargo.toml b/Cargo.toml index e6b0f50..2d7ce3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.6.0-alpha1" +version = "0.6.0-alpha2" 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 7a91330..fabb87b 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-alpha1" +rocket_cors = "0.6.0-alpha2" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index a6ed625..79df650 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-alpha1" +rocket_cors = "0.6.0-alpha2" ``` 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-alpha1", default-features = false } +rocket_cors = { version = "0.6.0-alpha2", default-features = false } ``` ## Usage