rand_jitter: bump version number to 0.1.3
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 955e872..5e6e3da 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,10 @@
 You may also find the [Upgrade Guide](https://rust-random.github.io/book/update.html) useful.
 
 
+## Unreleased
+- Enable fork protection of ReseedingRng without `std`
+- Remove dependency on `winapi`
+
 ## [0.6.5] - 2019-01-28
 ### Crates
 - Update `rand_core` to 0.4 (#703)
diff --git a/rand_jitter/CHANGELOG.md b/rand_jitter/CHANGELOG.md
index 8aa3a1b..961946e 100644
--- a/rand_jitter/CHANGELOG.md
+++ b/rand_jitter/CHANGELOG.md
@@ -4,6 +4,9 @@
 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.1.3] - 2019-02-05
+- Use libc in `no_std` mode to fix #723
+
 ## [0.1.2] - 2019-01-31
 - Fix for older rustc compilers on Windows (#722)
 
diff --git a/rand_jitter/Cargo.toml b/rand_jitter/Cargo.toml
index 59adc25..c8a350b 100644
--- a/rand_jitter/Cargo.toml
+++ b/rand_jitter/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "rand_jitter"
-version = "0.1.2"
+version = "0.1.3"
 authors = ["The Rand Project Developers"]
 license = "MIT/Apache-2.0"
 readme = "README.md"