Skip to content

Commit

Permalink
Bump to 0.6.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
lawliet89 committed Jan 13, 2022
1 parent 2ec5b3e commit ef0ab53
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit ef0ab53

Please sign in to comment.