File tree Expand file tree Collapse file tree 4 files changed +24
-25
lines changed Expand file tree Collapse file tree 4 files changed +24
-25
lines changed Original file line number Diff line number Diff line change 1
1
language : rust
2
2
sudo : false
3
3
rust :
4
- - 1.2.0
5
- - 1.3.0
6
- - 1.4.0
7
- - 1.5.0
8
- - 1.6.0
9
4
- 1.7.0
10
5
- stable
11
6
- beta
12
7
- 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
+
16
12
script :
17
13
- cargo build --verbose
18
14
- 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
28
16
29
- notifications :
30
- webhooks : http://rust-embedded-bot.herokuapp.com/travis
17
+ after_success :
18
+ - travis-cargo --only stable doc-upload
Original file line number Diff line number Diff line change 1
1
# Spidev Crate Changelog
2
2
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
4
15
5
16
[ Full Changelog] ( https://github.com/posborne/rust-spidev/compare/0.2.0...0.2.1 )
6
17
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
3
3
name = " spidev"
4
- version = " 0.2.1 "
4
+ version = " 0.3.0 "
5
5
authors = [" Paul Osborne <osbpau@gmail.com>" ]
6
6
license = " MIT/Apache-2.0"
7
7
repository = " https://github.com/rust-embedded/rust-spidev"
@@ -14,6 +14,6 @@ half-duplex SPI access, and full-duplex SPI access.
14
14
"""
15
15
16
16
[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"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Rust Spidev
5
5
[ ![ Version] ( https://img.shields.io/crates/v/spidev.svg )] ( https://crates.io/crates/spidev )
6
6
[ ![ License] ( https://img.shields.io/crates/l/spidev.svg )] ( https://github.com/rust-embedded/rust-spidev/blob/master/README.md#license )
7
7
8
- [ Documentation] ( https://posborne .github.io/rust-spidev )
8
+ [ Documentation] ( https://rust-embedded .github.io/rust-spidev )
9
9
10
10
The Rust ` spidev ` seeks to provide full access to the Linux spidev
11
11
device in Rust without the need to wrap any C code or directly make
You can’t perform that action at this time.
0 commit comments