diff --git a/Cargo.toml b/Cargo.toml index 8e2b63bd..01714a65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "boba" -version = "2.0.0" # remember to set `html_root_url` in `src/lib.rs`. +version = "3.0.0" # remember to set `html_root_url` in `src/lib.rs`. authors = ["Ryan Lopopolo "] license = "MIT" edition = "2018" diff --git a/README.md b/README.md index 1e25d8d2..88159f8a 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -boba = "2" +boba = "3" ``` Then encode and decode data like: diff --git a/src/lib.rs b/src/lib.rs index d7cd5920..1a2f5a0e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -47,7 +47,7 @@ //! into a `String`. This is known to be safe since the buffer is populated from //! a fixed, ASCII-only alpahabet. -#![doc(html_root_url = "https://artichoke.github.io/bubblebabble")] +#![doc(html_root_url = "https://docs.rs/boba/3.0.0")] #[cfg(doctest)] doc_comment::doctest!("../README.md");