diff --git a/Cargo.toml b/Cargo.toml index 3a51221..e2b53cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_cors" -version = "0.1.4" +version = "0.2.0" license = "Apache-2.0" authors = ["Yong Wen Chua "] build = "build.rs" diff --git a/README.md b/README.md index 80b48c8..25a7467 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ might work, but it's not guaranteed. Add the following to Cargo.toml: ```toml -rocket_cors = "0.1.4" +rocket_cors = "0.2.0" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index 49f4c6f..a59c51a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,7 @@ //! Add the following to Cargo.toml: //! //! ```toml -//! rocket_cors = "0.1.4" +//! rocket_cors = "0.2.0" //! ``` //! //! To use the latest `master` branch, for example: