From ef0ab53cd709bfa46dcfb3108513dc15b1f3cd5f Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Thu, 13 Jan 2022 09:43:59 +0800 Subject: [PATCH] Bump to 0.6.0-alpha1 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 4 ++-- 4 files changed, 34 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c67e0e2..3b7cdb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # CHANGELOG +## 0.6.0-alpha1 (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 +* Update to latest master Rocket version by @thanadolps in https://github.com/lawliet89/rocket_cors/pull/89 +* Upgrade to GitHub-native Dependabot by @dependabot-preview in https://github.com/lawliet89/rocket_cors/pull/90 +* Update to latest Rocket master by @ELD in https://github.com/lawliet89/rocket_cors/pull/91 +* Resolve Tokio Dependency conflicy by @magpie-engineering in https://github.com/lawliet89/rocket_cors/pull/92 +* Update to Rocket 0.5-rc.1 by @ELD in https://github.com/lawliet89/rocket_cors/pull/93 +* Update lib.rs and README for nightly req and version by @jtroo in https://github.com/lawliet89/rocket_cors/pull/95 +* Responder lifetime cannot be infered by @mrene in https://github.com/lawliet89/rocket_cors/pull/97 +* Fix documentation typos by @deneiruy in https://github.com/lawliet89/rocket_cors/pull/98 +* Fix rustdoc lint drift by @ELD in https://github.com/lawliet89/rocket_cors/pull/101 +* Drop body from response to preflight request by @KOBA789 in https://github.com/lawliet89/rocket_cors/pull/100 +* docs: fix ci badge by @torkleyy in https://github.com/lawliet89/rocket_cors/pull/104 +* feat: update rust edition from 2018 to 2021 by @somehowchris in https://github.com/lawliet89/rocket_cors/pull/105 + +## New Contributors +* @HenningHolmDE made their first contribution in https://github.com/lawliet89/rocket_cors/pull/81 +* @DusterTheFirst made their first contribution in https://github.com/lawliet89/rocket_cors/pull/85 +* @thanadolps made their first contribution in https://github.com/lawliet89/rocket_cors/pull/89 +* @magpie-engineering made their first contribution in https://github.com/lawliet89/rocket_cors/pull/92 +* @jtroo made their first contribution in https://github.com/lawliet89/rocket_cors/pull/95 +* @mrene made their first contribution in https://github.com/lawliet89/rocket_cors/pull/97 +* @deneiruy made their first contribution in https://github.com/lawliet89/rocket_cors/pull/98 +* @KOBA789 made their first contribution in https://github.com/lawliet89/rocket_cors/pull/100 +* @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 ## 0.5.2 (2020-03-18) ### Improvements diff --git a/Cargo.toml b/Cargo.toml index d88948c..7176956 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.5.2" +version = "0.6.0-alpha1" 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 bca29ac..7a91330 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.5.2" +rocket_cors = "0.6.0-alpha1" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index e8abbcd..bda0a6c 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.5.2" +rocket_cors = "0.6.0-alpha1" ``` 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.5.2", default-features = false } +rocket_cors = { version = "0.6.0-alpha1", default-features = false } ``` ## Usage