Skip to content

Commit

Permalink
Start the bump to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Feb 24, 2018
1 parent 35d31f5 commit 595a963
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: rust
rust:
- 1.8.0
- 1.15.0
- stable
- beta
- nightly
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ categories = [ "algorithms", "data-structures", "science" ]
license = "MIT/Apache-2.0"
name = "num-complex"
repository = "https://github.com/rust-num/num-complex"
version = "0.1.42"
version = "0.2.0-git"
publish = false
readme = "README.md"

[dependencies]
Expand Down
9 changes: 9 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Release 0.2.0 (pending)

- :warning: [num-complex now requires rustc 1.15 or greater][16].

**Contributors**: @cuviper

[16]: https://github.com/rust-num/num-complex/pull/16


# Release 0.1.42

- [num-complex now has its own source repository][num-356] at [rust-num/num-complex][home].
Expand Down
4 changes: 2 additions & 2 deletions ci/rustup.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/sh
# Use rustup to locally run the same suite of tests as .travis.yml.
# (You should first install/update 1.8.0, stable, beta, and nightly.)
# (You should first install/update 1.15.0, stable, beta, and nightly.)

set -ex

export TRAVIS_RUST_VERSION
for TRAVIS_RUST_VERSION in 1.8.0 stable beta nightly; do
for TRAVIS_RUST_VERSION in 1.15.0 stable beta nightly; do
run="rustup run $TRAVIS_RUST_VERSION"
$run cargo build --verbose
$run $PWD/ci/test_full.sh
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! ## Compatibility
//!
//! The `num-complex` crate is tested for rustc 1.8 and greater.
//! The `num-complex` crate is tested for rustc 1.15 and greater.

#![doc(html_root_url = "https://docs.rs/num-complex/0.1")]

Expand Down

0 comments on commit 595a963

Please sign in to comment.