Bump to 0.4.0-rc.2

This commit is contained in:
Yong Wen Chua 2018-11-21 12:18:58 +08:00
parent 13a3f7368e
commit 02c7fcf519
No known key found for this signature in database
GPG Key ID: EDC57EEC439CF10B
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

@ -29,7 +29,7 @@
//! Add the following to Cargo.toml:
//!
//! ```toml
//! rocket_cors = "0.4.0-rc.1"
//! rocket_cors = "0.4.0-rc.2"
//! ```
//!
//! To use the latest `master` branch, for example:
@ -45,7 +45,7 @@
//! your `Cargo.toml` to:
//!
//! ```toml
//! rocket_cors = { version = "0.4.0-rc.1", default-features = false }
//! rocket_cors = { version = "0.4.0-rc.2", default-features = false }
//! ```
//!
//! ## Usage