diff --git a/Cargo.toml b/Cargo.toml index f62cc674..541f3280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "focaccia" -version = "1.1.2" # remember to set `html_root_url` in `src/lib.rs`. +version = "1.2.0" # remember to set `html_root_url` in `src/lib.rs`. authors = ["Ryan Lopopolo "] license = "MIT AND Unicode-DFS-2016" edition = "2018" diff --git a/README.md b/README.md index 4159f357..1756955a 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -focaccia = "1.1.2" +focaccia = "1.2.0" ``` Then make case insensitive string comparisons like: diff --git a/src/lib.rs b/src/lib.rs index 3232da1a..b74f16ff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,7 +110,7 @@ //! [`Error`]: https://doc.rust-lang.org/stable/std/error/trait.Error.html #![no_std] -#![doc(html_root_url = "https://docs.rs/focaccia/1.1.2")] +#![doc(html_root_url = "https://docs.rs/focaccia/1.2.0")] // Ensure code blocks in README.md compile #[cfg(doctest)]