From 539157e0f0a6156131668f9a96c1c989c4b6028a Mon Sep 17 00:00:00 2001 From: Yong Wen Chua Date: Tue, 18 Jul 2017 18:26:32 +0800 Subject: [PATCH] Update Docs link and bump to 0.1.1 docs.rs cannot build nightly documentation --- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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: