diff --git a/Cargo.toml b/Cargo.toml index ae043c7..2c51d80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lipsum" -version = "0.9.0" +version = "0.9.1" authors = ["Martin Geisler "] description = """ Lipsum is a lorem ipsum text generation library. It generates diff --git a/README.md b/README.md index 7db161e..a6937f5 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,15 @@ all words. This is a changelog with the most important changes in each release. +### Version 0.9.1 (2024-03-13) + +* [#100](https://github.com/mgeisler/lipsum/pull/100): Add + `lipsum_title_with_rng` function. +* [#102](https://github.com/mgeisler/lipsum/pull/102): Document MSRV in + `Cargo.toml`. +* [#103](https://github.com/mgeisler/lipsum/pull/103): Enable dependabot + updates. + ### Version 0.9.0 (2023-03-28) * [#90](https://github.com/mgeisler/lipsum/pull/90): Test minimum diff --git a/src/lib.rs b/src/lib.rs index 891beff..831ed05 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -23,7 +23,7 @@ //! [`learn`]: struct.MarkovChain.html#method.learn //! [Markov chain]: https://en.wikipedia.org/wiki/Markov_chain -#![doc(html_root_url = "https://docs.rs/lipsum/0.9.0")] +#![doc(html_root_url = "https://docs.rs/lipsum/0.9.1")] #![forbid(unsafe_code)] #![deny(missing_docs)]