Skip to content

Commit

Permalink
Bump both Rocket and this library to 0.4.0 (#56)
Browse files Browse the repository at this point in the history
* Bump to Rocket 0.4.0

* Bump to 0.4.0

Fixes #55
  • Loading branch information
SergioBenitez authored and lawliet89 committed Dec 12, 2018
1 parent 495317b commit d880c2a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_cors"
version = "0.4.0-rc.3"
version = "0.4.0"
license = "MIT/Apache-2.0"
authors = ["Yong Wen Chua <[email protected]>"]
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
Expand All @@ -21,7 +21,7 @@ default = ["serialization"]
serialization = ["serde", "serde_derive", "unicase_serde", "url_serde"]

[dependencies]
rocket = "0.4.0-rc.2"
rocket = "0.4.0"
log = "0.3"
unicase = "2.0"
url = "1.5.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
rocket_cors = "0.4.0"
```

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 @@ -29,7 +29,7 @@
//! Add the following to Cargo.toml:
//!
//! ```toml
//! rocket_cors = "0.4.0-rc.3"
//! rocket_cors = "0.4.0"
//! ```
//!
//! To use the latest `master` branch, for example:
Expand All @@ -45,7 +45,7 @@
//! your `Cargo.toml` to:
//!
//! ```toml
//! rocket_cors = { version = "0.4.0-rc.3", default-features = false }
//! rocket_cors = { version = "0.4.0", default-features = false }
//! ```
//!
//! ## Usage
Expand Down

0 comments on commit d880c2a

Please sign in to comment.