rand_xoshiro: Bump minor version
diff --git a/Cargo.toml b/Cargo.toml
index ef344a6..5f30603 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -82,7 +82,7 @@
 rand_pcg = { path = "rand_pcg", version = "0.2" }
 # Only for benches:
 rand_hc = { path = "rand_hc", version = "0.2" }
-rand_xoshiro = { path = "rand_xoshiro", version = "0.3" }
+rand_xoshiro = { path = "rand_xoshiro", version = "0.4" }
 rand_isaac = { path = "rand_isaac", version = "0.2" }
 rand_xorshift = { path = "rand_xorshift", version = "0.2" }
 
diff --git a/rand_xoshiro/CHANGELOG.md b/rand_xoshiro/CHANGELOG.md
index 56cb9c2..147303d 100644
--- a/rand_xoshiro/CHANGELOG.md
+++ b/rand_xoshiro/CHANGELOG.md
@@ -4,6 +4,12 @@
 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
+## [0.4.0] - 2019-09-03
+- Add xoshiro128++, 256++ and 512++ variants
+- Add xoroshiro128++ variant
+- Add `long_jump` method to RNGs missing it
+- Update xoshiro128** to version 1.1, breaking value stability
+
 ## [0.3.1] - 2019-08-06
 - Drop `byteorder`-dependency in favor of `stdlib`-implementation.
 
diff --git a/rand_xoshiro/Cargo.toml b/rand_xoshiro/Cargo.toml
index 128c213..b2ff499 100644
--- a/rand_xoshiro/Cargo.toml
+++ b/rand_xoshiro/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "rand_xoshiro"
-version = "0.3.1" # NB: When modifying, also modify html_root_url in lib.rs
+version = "0.4.0" # NB: When modifying, also modify html_root_url in lib.rs
 authors = ["The Rand Project Developers"]
 license = "MIT OR Apache-2.0"
 readme = "README.md"
diff --git a/rand_xoshiro/src/lib.rs b/rand_xoshiro/src/lib.rs
index 14a691c..d05e1cc 100644
--- a/rand_xoshiro/src/lib.rs
+++ b/rand_xoshiro/src/lib.rs
@@ -70,7 +70,7 @@
 
 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
        html_favicon_url = "https://www.rust-lang.org/favicon.ico",
-       html_root_url = "https://docs.rs/rand_xoshiro/0.3.1")]
+       html_root_url = "https://docs.rs/rand_xoshiro/0.4.0")]
 
 #![deny(missing_docs)]
 #![deny(missing_debug_implementations)]