Release 0.5.0-beta-1

This commit is contained in:
Yong Wen Chua 2019-03-18 10:32:24 +08:00
parent ed1571394c
commit 00e1399b1f
No known key found for this signature in database
GPG Key ID: A70BD30B21497EA9
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "rocket_cors"
version = "0.5.0"
version = "0.5.0-beta-1"
license = "MIT/Apache-2.0"
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"

View File

@ -30,7 +30,7 @@ work, but they are subject to the minimum that Rocket sets.
Add the following to Cargo.toml:
```toml
rocket_cors = "0.5.0"
rocket_cors = "0.5.0-beta-1"
```
To use the latest `master` branch, for example:

View File

@ -29,7 +29,7 @@ might work, but they are subject to the minimum that Rocket sets.
Add the following to Cargo.toml:
```toml
rocket_cors = "0.5.0"
rocket_cors = "0.5.0-beta-1"
```
To use the latest `master` branch, for example:
@ -45,7 +45,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.0", default-features = false }
rocket_cors = { version = "0.5.0-beta-1", default-features = false }
```
## Usage