From 5cde80a61a112c670cdff7736da35d95f64f879c Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 28 Mar 2023 09:02:39 +0000 Subject: [PATCH 1/2] Update changelog for version 0.9.0 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2a84ea8..3a7cc83 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,13 @@ all words. This is a changelog with the most important changes in each release. +### Version 0.9.0 (2023-03-28) + +* [#90](https://github.com/mgeisler/lipsum/pull/90): Test minimum + supported Rust version (Rust 1.56) in CI +* [#91](https://github.com/mgeisler/lipsum/pull/91): Remove dependency + on system randomness + ### Version 0.8.2 (2022-06-06) * [#84](https://github.com/mgeisler/lipsum/pull/84): Fix build error From 244013e82cc04b67f6906030730817ad361dfb35 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Tue, 28 Mar 2023 09:04:42 +0000 Subject: [PATCH 2/2] Bump version to 0.9.0 --- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c4719fe..2258d7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lipsum" -version = "0.8.2" +version = "0.9.0" authors = ["Martin Geisler "] description = """ Lipsum is a lorem ipsum text generation library. It generates diff --git a/README.md b/README.md index 3a7cc83..7db161e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -lipsum = "0.8" +lipsum = "0.9" ``` ## Documentation diff --git a/src/lib.rs b/src/lib.rs index e94b922..83f0583 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.8.2")] +#![doc(html_root_url = "https://docs.rs/lipsum/0.9.0")] #![forbid(unsafe_code)] #![deny(missing_docs)]