From ab9bf2771da0f567b96cb894f725664decbfc019 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Mon, 4 Mar 2019 08:50:01 +0000 Subject: [PATCH 1/2] Ignore temporary files associated with wasm_bindgen test --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index a9d37c560c6..ac38e8174a6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ target Cargo.lock +rand_wasm_bindgen_test*.[tj]s +rand_wasm_bindgen_test*.wasm From bce70e348242a3a4f91b85b0bf90de2d03527f08 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Mon, 4 Mar 2019 08:54:07 +0000 Subject: [PATCH 2/2] rand_os: prepare 0.1.3 release --- rand_os/CHANGELOG.md | 5 +++++ rand_os/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/rand_os/CHANGELOG.md b/rand_os/CHANGELOG.md index 97a8e84e44f..1ce36fc6cc7 100644 --- a/rand_os/CHANGELOG.md +++ b/rand_os/CHANGELOG.md @@ -5,6 +5,11 @@ 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-03-05 +### Changes +- Fix support for Illumos (#730) +- Fix deprecation warnings from atomic init (#739) + ## [0.1.2] - 2019-01-28 ### Changes - Fuchsia: Replaced fuchsia-zircon with fuchsia-cprng diff --git a/rand_os/Cargo.toml b/rand_os/Cargo.toml index 1483c369540..6bb639a4598 100644 --- a/rand_os/Cargo.toml +++ b/rand_os/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rand_os" -version = "0.1.2" +version = "0.1.3" authors = ["The Rand Project Developers"] license = "MIT/Apache-2.0" readme = "README.md"