From 0e3ccd08d3fc697a7e22f1effab11bb09621429e Mon Sep 17 00:00:00 2001 From: Harald Maida Date: Tue, 25 Jun 2019 22:03:27 +0200 Subject: [PATCH] release 0.4.0 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abcbc70..c280820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All user visible changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/), as described for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md) -## 0.4.0 : +## 0.4.0 : 2019-06-25 ### Breaking changes: diff --git a/Cargo.toml b/Cargo.toml index 936c31d..d352525 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "genevo" -version = "0.3.0" +version = "0.4.0" authors = ["haraldmaida"] license = "MIT/Apache-2.0" description = """ diff --git a/README.md b/README.md index 4d9c066..c586470 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -genevo = "0.3" +genevo = "0.4" ``` If you are not using Rust 2018 edition add this to your crate root: diff --git a/src/lib.rs b/src/lib.rs index e30045a..a8dfcff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,7 @@ //! searches for solutions of the //! [N Queens Problem](https://en.wikipedia.org/wiki/Eight_queens_puzzle) -#![doc(html_root_url = "https://docs.rs/genevo/0.3.0")] +#![doc(html_root_url = "https://docs.rs/genevo/0.4.0")] #![warn( bare_trait_objects, missing_copy_implementations,