Skip to content

Commit 624b440

Browse files
authored
Merge pull request #9 from rust-embedded/drop-older-rustc-and-prep-release
Drop older rustc and prep release
2 parents fbe6d06 + 73e4fab commit 624b440

File tree

4 files changed

+24
-25
lines changed

4 files changed

+24
-25
lines changed

.travis.yml

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,18 @@
11
language: rust
22
sudo: false
33
rust:
4-
- 1.2.0
5-
- 1.3.0
6-
- 1.4.0
7-
- 1.5.0
8-
- 1.6.0
94
- 1.7.0
105
- stable
116
- beta
127
- nightly
13-
env:
14-
global:
15-
- secure: cJteZ1LbDExDnUMJqWrPQwHNWFDJOP5OH1zYX8j1nkJ91paDqBogCuHslooSDcrewnCmTLawv8na1KjGMZ2y3mwn26GhF5TfXsY+vHATIyex+z2fGOgCOlx47MSRdK7A30Pl66Ye/oboDX7iTqc+uzNucoutOB/ji4euD6wOu1g=
8+
9+
before_script:
10+
- pip install 'travis-cargo<0.2' --user
11+
1612
script:
1713
- cargo build --verbose
1814
- cargo test --verbose
19-
- cargo doc
20-
21-
# Publish documentation on successfull master build
22-
# using the ghp-import python package
23-
after_success: ! '[ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ]
24-
&& echo "<meta http-equiv=refresh content=0;url=spidev/index.html>" > target/doc/index.html
25-
&& sudo pip install ghp-import
26-
&& ghp-import -n target/doc
27-
&& git push -fq https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages'
15+
- travis-cargo --only stable doc
2816

29-
notifications:
30-
webhooks: http://rust-embedded-bot.herokuapp.com/travis
17+
after_success:
18+
- travis-cargo --only stable doc-upload

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Spidev Crate Changelog
22

3-
## 0.2.0 / 2016-4-12
3+
## 0.3.0 / 2016-10-26
4+
5+
- The older supported version of rustc for this release is 1.7.0
6+
- Bump to nix 0.6.0
7+
- [transfer_multiple](http://posborne.github.io/rust-spidev/spidev/struct.Spidev.html#method.transfer_multiple) now
8+
receives an `IntoIterator` rather than requiring that a Vec reference be
9+
provided. ([#7](https://github.com/rust-embedded/rust-spidev/pull/7))
10+
- [transfer_multiple](http://posborne.github.io/rust-spidev/spidev/struct.Spidev.html#method.transfer_multiple) no
11+
longer performs heap allocations internally (nor does it require heap
12+
allocations to be used). ([#8](https://github.com/rust-embedded/rust-spidev/pull/8))
13+
14+
## 0.2.1 / 2016-4-12
415

516
[Full Changelog](https://github.com/posborne/rust-spidev/compare/0.2.0...0.2.1)
617

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "spidev"
4-
version = "0.2.1"
4+
version = "0.3.0"
55
authors = ["Paul Osborne <osbpau@gmail.com>"]
66
license = "MIT/Apache-2.0"
77
repository = "https://github.com/rust-embedded/rust-spidev"
@@ -14,6 +14,6 @@ half-duplex SPI access, and full-duplex SPI access.
1414
"""
1515

1616
[dependencies]
17-
libc = "^0.2.2"
18-
bitflags = "^0.3.3"
19-
nix = "^0.6.0"
17+
libc = "0.2.2"
18+
bitflags = "0.3.3"
19+
nix = "0.6.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Rust Spidev
55
[![Version](https://img.shields.io/crates/v/spidev.svg)](https://crates.io/crates/spidev)
66
[![License](https://img.shields.io/crates/l/spidev.svg)](https://github.com/rust-embedded/rust-spidev/blob/master/README.md#license)
77

8-
[Documentation](https://posborne.github.io/rust-spidev)
8+
[Documentation](https://rust-embedded.github.io/rust-spidev)
99

1010
The Rust `spidev` seeks to provide full access to the Linux spidev
1111
device in Rust without the need to wrap any C code or directly make

0 commit comments

Comments
 (0)