Skip to content

Commit 63a8967

Browse files
committed
Update for rand's MSRV 1.36
1 parent 28176b4 commit 63a8967

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ jobs:
1414
matrix:
1515
rust: [
1616
1.31.0, # 2018!
17-
1.32.0, # rand
1817
1.34.0, # quickcheck, has_try_from
19-
1.36.0, # alloc
18+
1.36.0, # alloc, rand
2019
stable,
2120
beta,
2221
nightly

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ if your compiler is not new enough.
2929
feature is enabled. To enable it include rand as
3030

3131
```toml
32-
rand = "0.7"
32+
rand = "0.8"
3333
num-bigint = { version = "0.3", features = ["rand"] }
3434
```
3535

3636
Note that you must use the version of `rand` that `num-bigint` is compatible
37-
with: `0.7`.
37+
with: `0.8`.
3838

3939
## Releases
4040

bors.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
status = [
22
"Test (1.31.0)",
3-
"Test (1.32.0)",
43
"Test (1.34.0)",
54
"Test (1.36.0)",
65
"Test (stable)",

ci/rustup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
set -ex
66

77
ci=$(dirname $0)
8-
for version in 1.31.0 1.32.0 1.34.0 1.36.0 stable beta nightly; do
8+
for version in 1.31.0 1.34.0 1.36.0 stable beta nightly; do
99
rustup run "$version" "$ci/test_full.sh"
1010
done

ci/test_full.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ if ! check_version $MSRV ; then
2828
fi
2929

3030
STD_FEATURES=(serde)
31-
check_version 1.32 && STD_FEATURES+=(rand)
3231
check_version 1.34 && STD_FEATURES+=(quickcheck)
32+
check_version 1.36 && STD_FEATURES+=(rand)
3333
check_version 1.36 && NO_STD_FEATURES=(serde rand)
3434
check_version 1.40 && STD_FEATURES+=(arbitrary)
3535
echo "Testing supported features: ${STD_FEATURES[*]}"

0 commit comments

Comments
 (0)