Skip to content

Commit

Permalink
Merge pull request #97 from mgeisler/release-0.9.0
Browse files Browse the repository at this point in the history
Release 0.9.0
  • Loading branch information
mgeisler authored Mar 28, 2023
2 parents 1a69d3b + 244013e commit e584c54
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lipsum"
version = "0.8.2"
version = "0.9.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
Lipsum is a lorem ipsum text generation library. It generates
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
lipsum = "0.8"
lipsum = "0.9"
```

## Documentation
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit e584c54

Please sign in to comment.