diff --git a/Cargo.toml b/Cargo.toml index 0bb6cd3..fbf3f81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "rocket_cors" -version = "0.1.0" +version = "0.1.1" license = "Apache-2.0" authors = ["Yong Wen Chua "] build = "build.rs" description = "Cross-origin resource sharing (CORS) for Rocket.rs applications" homepage = "https://github.com/lawliet89/rocket_cors" repository = "https://github.com/lawliet89/rocket_cors" -documentation = "https://docs.rs/rocket_cors/" +documentation = "https://lawliet89.github.io/rocket_cors/" keywords = ["rocket", "cors"] categories = ["web-programming"] diff --git a/README.md b/README.md index 76964a7..0bbd35c 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.0" +rocket_cors = "0.1.1" ``` To use the latest `master` branch, for example: diff --git a/src/lib.rs b/src/lib.rs index f6af7d9..809e631 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,7 @@ //! Add the following to Cargo.toml: //! //! ```toml -//! rocket_cors = "0.1.0" +//! rocket_cors = "0.1.1" //! ``` //! //! To use the latest `master` branch, for example: