Release: prepare rand_core 0.1.0
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e2e65ff..c0544e5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -31,7 +31,7 @@
 - Deprecate `Rng::gen_ascii_chars`. (#279)
 
 ### `rand_core` crate
-(changes included here because they greatly influence the Rand crate)
+- `rand` now depends on new `rand_core` crate (#288)
 - `RngCore` and `SeedableRng` are now part of `rand_core`. (#288)
 - Add modules to help implementing RNGs `impl` and `le`. (#209, #228)
 - Add `Error` and `ErrorKind`. (#225)
diff --git a/Cargo.toml b/Cargo.toml
index 71d335c..8dc9c3c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,7 +29,7 @@
 members = ["rand_core"]
 
 [dependencies]
-rand_core = { path = "rand_core", version = "0.1.0-pre.0", default-features = false }
+rand_core = { path = "rand_core", version = "0.1.0", default-features = false }
 log = { version = "0.4", optional = true }
 serde = { version = "1", optional = true }
 serde_derive = { version = "1", optional = true }
diff --git a/rand_core/CHANGELOG.md b/rand_core/CHANGELOG.md
index 0163331..0358bdc 100644
--- a/rand_core/CHANGELOG.md
+++ b/rand_core/CHANGELOG.md
@@ -5,7 +5,7 @@
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 
-## [0.1.0] - Unreleased
+## [0.1.0] - TODO - date
 (Split out of the Rand crate, changes here are relative to rand 0.4.2)
 - `RngCore` and `SeedableRng` are now part of `rand_core`. (#288)
 - Add modules to help implementing RNGs `impl` and `le`. (#209, #228)
diff --git a/rand_core/Cargo.toml b/rand_core/Cargo.toml
index e75d927..e307f4d 100644
--- a/rand_core/Cargo.toml
+++ b/rand_core/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "rand_core"
-version = "0.1.0-pre.0" # NB: When modifying, also modify html_root_url in lib.rs
+version = "0.1.0" # NB: When modifying, also modify html_root_url in lib.rs
 authors = ["The Rust Project Developers"]
 license = "MIT/Apache-2.0"
 readme = "README.md"
diff --git a/rand_core/src/lib.rs b/rand_core/src/lib.rs
index 8036bf1..74d4e59 100644
--- a/rand_core/src/lib.rs
+++ b/rand_core/src/lib.rs
@@ -35,7 +35,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_core/0.1.0-pre.0")]
+       html_root_url = "https://docs.rs/rand_core/0.1.0")]
 
 #![deny(missing_debug_implementations)]