Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lawliet89 committed Nov 18, 2023
1 parent 0a0fce2 commit a5e4fba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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-alpha3"
version = "0.6.0"
license = "MIT/Apache-2.0"
authors = ["Yong Wen Chua <me@yongwen.xyz>"]
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-alpha3"
rocket_cors = "0.6.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 @@ -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-alpha3"
rocket_cors = "0.6.0"
```
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-alpha3", default-features = false }
rocket_cors = { version = "0.6.0", default-features = false }
```
## Usage
Expand Down

0 comments on commit a5e4fba

Please sign in to comment.