Skip to content

Commit 089b86a

Browse files
committed
Start the bump to 0.2
1 parent f656829 commit 089b86a

File tree

5 files changed

+16
-20
lines changed

5 files changed

+16
-20
lines changed

.travis.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
language: rust
22
rust:
3+
- 1.15.0
34
- stable
45
- beta
56
- nightly
6-
matrix:
7-
include:
8-
- rust: 1.8.0
9-
before_script:
10-
# rand 0.3.22 started depending on rand 0.4, which requires rustc 1.15
11-
# manually hacking the lockfile due to the limitations of cargo#2773
12-
- cargo generate-lockfile
13-
- sed -i -e 's/"rand 0.[34].[0-9]\+/"rand 0.3.20/' Cargo.lock
14-
- sed -i -e '/^name = "rand"/,/^$/s/version = "0.3.[0-9]\+"/version = "0.3.20"/' Cargo.lock
157
sudo: false
168
script:
179
- cargo build --verbose

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ categories = [ "algorithms", "data-structures", "science" ]
88
license = "MIT/Apache-2.0"
99
name = "num-bigint"
1010
repository = "https://github.com/rust-num/num-bigint"
11-
version = "0.1.43"
11+
version = "0.2.0-git"
12+
publish = false
1213
readme = "README.md"
1314

1415
[[bench]]

RELEASES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Release 0.2.0 (pending)
2+
3+
- :warning: [num-bigint now requires rustc 1.15 or greater][23].
4+
5+
**Contributors**: @cuviper
6+
7+
[23]: https://github.com/rust-num/num-bigint/pull/23
8+
9+
110
# Release 0.1.43
211

312
- [The new `BigInt::modpow`][18] performs signed modular exponentiation, using
@@ -7,6 +16,7 @@
716

817
[18]: https://github.com/rust-num/num-bigint/pull/18
918

19+
1020
# Release 0.1.42
1121

1222
- [num-bigint now has its own source repository][num-356] at [rust-num/num-bigint][home].

ci/rustup.sh

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
#!/bin/sh
22
# Use rustup to locally run the same suite of tests as .travis.yml.
3-
# (You should first install/update 1.8.0, stable, beta, and nightly.)
3+
# (You should first install/update 1.15.0, stable, beta, and nightly.)
44

55
set -ex
66

77
export TRAVIS_RUST_VERSION
8-
for TRAVIS_RUST_VERSION in 1.8.0 stable beta nightly; do
8+
for TRAVIS_RUST_VERSION in 1.15.0 stable beta nightly; do
99
run="rustup run $TRAVIS_RUST_VERSION"
10-
if [ "$TRAVIS_RUST_VERSION" = 1.8.0 ]; then
11-
# rand 0.3.22 started depending on rand 0.4, which requires rustc 1.15
12-
# manually hacking the lockfile due to the limitations of cargo#2773
13-
$run cargo generate-lockfile
14-
$run sed -i -e 's/"rand 0.[34].[0-9]\+/"rand 0.3.20/' Cargo.lock
15-
$run sed -i -e '/^name = "rand"/,/^$/s/version = "0.3.[0-9]\+"/version = "0.3.20"/' Cargo.lock
16-
fi
1710
$run cargo build --verbose
1811
$run $PWD/ci/test_full.sh
1912
done

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
//!
7373
//! ## Compatibility
7474
//!
75-
//! The `num-bigint` crate is tested for rustc 1.8 and greater.
75+
//! The `num-bigint` crate is tested for rustc 1.15 and greater.
7676
7777
#![doc(html_root_url = "https://docs.rs/num-bigint/0.1")]
7878

0 commit comments

Comments
 (0)