Skip to content

Commit

Permalink
Release 0.6.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
lawliet89 committed Mar 25, 2023
1 parent c3acfbf commit 985098d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
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.6.0-alpha1"
version = "0.6.0-alpha2"
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.6.0-alpha1"
rocket_cors = "0.6.0-alpha2"
```

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.6.0-alpha1"
rocket_cors = "0.6.0-alpha2"
```
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.6.0-alpha1", default-features = false }
rocket_cors = { version = "0.6.0-alpha2", default-features = false }
```
## Usage
Expand Down

0 comments on commit 985098d

Please sign in to comment.