From 01e615d9bb920523c51a61214922ad1c72891451 Mon Sep 17 00:00:00 2001 From: Martin Geisler Date: Sun, 22 Apr 2018 22:17:59 +0200 Subject: [PATCH] cargo: bump version to 0.5.0 --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a536cb..cf9db69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lipsum" -version = "0.4.0" +version = "0.5.0" authors = ["Martin Geisler "] description = """ Lipsum is a lorem ipsum text generation library. Use this if you need diff --git a/README.md b/README.md index 7e9b588..6d3bf96 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ scrambled subset. Add this to your `Cargo.toml`: ```toml [dependencies] -lipsum = "0.4" +lipsum = "0.5" ``` and this to your crate root: @@ -75,7 +75,7 @@ all words. This is a changelog with the most important changes in each release. -### Unreleased +### Version 0.5.0 — April 22nd, 2018 The new `lipsum_title` function can be used to generate a short string suitable for a document title or a section heading. diff --git a/src/lib.rs b/src/lib.rs index 331c2a3..7471103 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,7 +31,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.4.0")] +#![doc(html_root_url = "https://docs.rs/lipsum/0.5.0")] #![deny(missing_docs)] extern crate rand;