Skip to content

Commit 66c7025

Browse files
committed
Update version numbers: rand_core 0.2.0 and rand 0.5.0
1 parent 8f57a13 commit 66c7025

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A [separate changelog is kept for rand_core](rand_core/CHANGELOG.md).
99
You may also find the [Update Guide](UPDATING.md) useful.
1010

1111

12-
## [0.5.0] - Unreleased
12+
## [0.5.0] - 2018-05-21
1313

1414
### Crate features and organisation
1515
- Minimum Rust version update: 1.22.0. (#239)

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand"
3-
version = "0.5.0-pre.2" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.5.0" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"
@@ -29,7 +29,7 @@ serde1 = ["serde", "serde_derive", "rand_core/serde1"] # enables serialization f
2929
members = ["rand_core"]
3030

3131
[dependencies]
32-
rand_core = { path = "rand_core", version = "0.2.0-pre.0", default-features = false }
32+
rand_core = { path = "rand_core", version = "0.2", default-features = false }
3333
log = { version = "0.4", optional = true }
3434
serde = { version = "1", optional = true }
3535
serde_derive = { version = "1", optional = true }

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Add this to your `Cargo.toml`:
2525

2626
```toml
2727
[dependencies]
28-
rand = "0.5.0-pre.1"
28+
rand = "0.5"
2929
```
3030

3131
and this to your crate root:

rand_core/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8-
## [0.2.0] - Unreleased
8+
## [0.2.0] - 2018-05-21
99
- Enable the `std` feature by default. (#409)
1010
- Remove `BlockRng{64}::inner` and `BlockRng::inner_mut`; instead making `core` public
1111
- Add `BlockRng{64}::index` and `BlockRng{64}::generate_and_set`. (#374, #419)

rand_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rand_core"
3-
version = "0.2.0-pre.0" # NB: When modifying, also modify html_root_url in lib.rs
3+
version = "0.2.0" # NB: When modifying, also modify html_root_url in lib.rs
44
authors = ["The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
readme = "README.md"

rand_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
3636
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
3737
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
38-
html_root_url = "https://docs.rs/rand_core/0.2")]
38+
html_root_url = "https://docs.rs/rand_core/0.2.0")]
3939

4040
#![deny(missing_docs)]
4141
#![deny(missing_debug_implementations)]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@
223223

224224
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk.png",
225225
html_favicon_url = "https://www.rust-lang.org/favicon.ico",
226-
html_root_url = "https://docs.rs/rand/0.5")]
226+
html_root_url = "https://docs.rs/rand/0.5.0")]
227227

228228
#![deny(missing_docs)]
229229
#![deny(missing_debug_implementations)]

0 commit comments

Comments
 (0)