Skip to content

Commit ef0ab53

Browse files
committed
Bump to 0.6.0-alpha1
1 parent 2ec5b3e commit ef0ab53

4 files changed

Lines changed: 34 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# CHANGELOG
22

3+
## 0.6.0-alpha1 (2022-01-13)
4+
## What's Changed
5+
* Use async version from rocket's master branch by @HenningHolmDE in https://github.com/lawliet89/rocket_cors/pull/81
6+
* fix: Update to latest master Rocket version by @DusterTheFirst in https://github.com/lawliet89/rocket_cors/pull/85
7+
* Update to latest master Rocket version by @thanadolps in https://github.com/lawliet89/rocket_cors/pull/89
8+
* Upgrade to GitHub-native Dependabot by @dependabot-preview in https://github.com/lawliet89/rocket_cors/pull/90
9+
* Update to latest Rocket master by @ELD in https://github.com/lawliet89/rocket_cors/pull/91
10+
* Resolve Tokio Dependency conflicy by @magpie-engineering in https://github.com/lawliet89/rocket_cors/pull/92
11+
* Update to Rocket 0.5-rc.1 by @ELD in https://github.com/lawliet89/rocket_cors/pull/93
12+
* Update lib.rs and README for nightly req and version by @jtroo in https://github.com/lawliet89/rocket_cors/pull/95
13+
* Responder lifetime cannot be infered by @mrene in https://github.com/lawliet89/rocket_cors/pull/97
14+
* Fix documentation typos by @deneiruy in https://github.com/lawliet89/rocket_cors/pull/98
15+
* Fix rustdoc lint drift by @ELD in https://github.com/lawliet89/rocket_cors/pull/101
16+
* Drop body from response to preflight request by @KOBA789 in https://github.com/lawliet89/rocket_cors/pull/100
17+
* docs: fix ci badge by @torkleyy in https://github.com/lawliet89/rocket_cors/pull/104
18+
* feat: update rust edition from 2018 to 2021 by @somehowchris in https://github.com/lawliet89/rocket_cors/pull/105
19+
20+
## New Contributors
21+
* @HenningHolmDE made their first contribution in https://github.com/lawliet89/rocket_cors/pull/81
22+
* @DusterTheFirst made their first contribution in https://github.com/lawliet89/rocket_cors/pull/85
23+
* @thanadolps made their first contribution in https://github.com/lawliet89/rocket_cors/pull/89
24+
* @magpie-engineering made their first contribution in https://github.com/lawliet89/rocket_cors/pull/92
25+
* @jtroo made their first contribution in https://github.com/lawliet89/rocket_cors/pull/95
26+
* @mrene made their first contribution in https://github.com/lawliet89/rocket_cors/pull/97
27+
* @deneiruy made their first contribution in https://github.com/lawliet89/rocket_cors/pull/98
28+
* @KOBA789 made their first contribution in https://github.com/lawliet89/rocket_cors/pull/100
29+
* @torkleyy made their first contribution in https://github.com/lawliet89/rocket_cors/pull/104
30+
* @somehowchris made their first contribution in https://github.com/lawliet89/rocket_cors/pull/105
31+
32+
**Full Changelog**: https://github.com/lawliet89/rocket_cors/compare/v0.5.2...v0.6.0-alpha1
333
## 0.5.2 (2020-03-18)
434

535
### Improvements

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rocket_cors"
3-
version = "0.5.2"
3+
version = "0.6.0-alpha1"
44
license = "MIT/Apache-2.0"
55
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
66
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ If you are using Rocket 0.3, use the `0.3.0` version of this crate.
1919
Add the following to Cargo.toml:
2020

2121
```toml
22-
rocket_cors = "0.5.2"
22+
rocket_cors = "0.6.0-alpha1"
2323
```
2424

2525
To use the latest `master` branch, for example:

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ If you are using Rocket 0.3, use the `0.3.0` version of this crate.
1818
Add the following to Cargo.toml:
1919
2020
```toml
21-
rocket_cors = "0.5.2"
21+
rocket_cors = "0.6.0-alpha1"
2222
```
2323
2424
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
3434
change your `Cargo.toml` to:
3535
3636
```toml
37-
rocket_cors = { version = "0.5.2", default-features = false }
37+
rocket_cors = { version = "0.6.0-alpha1", default-features = false }
3838
```
3939
4040
## Usage

0 commit comments

Comments
 (0)