Skip to content

Commit

Permalink
Merge pull request rust-random#859 from newpavlov/patch-3
Browse files Browse the repository at this point in the history
Fix rand_os
  • Loading branch information
dhardy committed Aug 8, 2019
2 parents d3620b6 + 900a6cd commit 29056a0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions rand_os/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2019-08-08
### Fixed
- Fix `no_std` support.

## [0.2.0] - 2019-06-06
Replaced implementation with a backwards-compatible shim around
### Changed
- Minimum Supported Rust Version has changed to 1.32.
- Replaced implementation with a backwards-compatible shim around
[getrandom](https://crates.io/crates/getrandom).

## [0.1.3] - 2019-03-05
### Changes
### Fixed
- Fix support for Illumos (#730)
- Fix deprecation warnings from atomic init (#739)

## [0.1.2] - 2019-01-28
### Changes
### Changed
- Fuchsia: Replaced fuchsia-zircon with fuchsia-cprng

## [0.1.1] - 2019-01-08
### Additions
### Added
- Add support for x86_64-fortanix-unknown-sgx target (#670)

## [0.1.0] - 2019-01-04
Expand Down
4 changes: 2 additions & 2 deletions rand_os/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rand_os"
version = "0.2.0"
version = "0.2.1"
authors = ["The Rand Project Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -22,5 +22,5 @@ wasm-bindgen = ["getrandom/wasm-bindgen"]
stdweb = ["getrandom/stdweb"]

[dependencies]
rand_core = { path = "../rand_core", version = "0.5", features = ["std"] }
rand_core = { path = "../rand_core", version = "0.5", features = ["getrandom"] }
getrandom = "0.1.1"

0 comments on commit 29056a0

Please sign in to comment.