Bump to beta 2 for development
This commit is contained in:
parent
00e1399b1f
commit
b5cb16c74a
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "rocket_cors"
|
name = "rocket_cors"
|
||||||
version = "0.5.0-beta-1"
|
version = "0.5.0-beta-2"
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
|
||||||
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
|
||||||
|
|
|
@ -30,7 +30,7 @@ work, but they are subject to the minimum that Rocket sets.
|
||||||
Add the following to Cargo.toml:
|
Add the following to Cargo.toml:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
rocket_cors = "0.5.0-beta-1"
|
rocket_cors = "0.5.0-beta-2"
|
||||||
```
|
```
|
||||||
|
|
||||||
To use the latest `master` branch, for example:
|
To use the latest `master` branch, for example:
|
||||||
|
|
|
@ -29,7 +29,7 @@ might work, but they are subject to the minimum that Rocket sets.
|
||||||
Add the following to Cargo.toml:
|
Add the following to Cargo.toml:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
rocket_cors = "0.5.0-beta-1"
|
rocket_cors = "0.5.0-beta-2"
|
||||||
```
|
```
|
||||||
|
|
||||||
To use the latest `master` branch, for example:
|
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:
|
change your `Cargo.toml` to:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
rocket_cors = { version = "0.5.0-beta-1", default-features = false }
|
rocket_cors = { version = "0.5.0-beta-2", default-features = false }
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
Loading…
Reference in New Issue