File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ matrix:
72
72
73
73
# MSRV
74
74
- env : TARGET=x86_64-unknown-linux-gnu
75
- rust : 1.38 .0
75
+ rust : 1.39 .0
76
76
if : (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
77
77
78
78
before_install :
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
10
10
11
11
## v0.4.0 - 2020-08-01
12
12
13
+ - MSRV is now 1.39.0
13
14
- Add support behind a feature flag for reading events from a line as a Stream via tokio. [ #35 ] ( https://github.com/rust-embedded/gpio-cdev/pull/35 ) .
14
15
15
16
## v0.3.0 - 2020-02-10
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ to be considered reliable.
207
207
208
208
## Minimum Supported Rust Version (MSRV)
209
209
210
- This crate is guaranteed to compile on stable Rust 1.38 .0 and up. It * might*
210
+ This crate is guaranteed to compile on stable Rust 1.39 .0 and up. It * might*
211
211
compile with older versions but that may change in any new patch release.
212
212
213
213
## License
Original file line number Diff line number Diff line change 3
3
set -ex
4
4
5
5
main () {
6
- cross build --target $TARGET
7
- cross build --target $TARGET --release
6
+ cross build --target $TARGET --all-features
7
+ cross build --target $TARGET --release --all-features
8
8
9
9
if [ ! -z $DISABLE_TESTS ]; then
10
10
return
11
11
fi
12
12
13
- cross test --target $TARGET
14
- cross test --target $TARGET --release
13
+ cross test --target $TARGET --all-features
14
+ cross test --target $TARGET --release --all-features
15
15
16
16
# No main binary, so skip the 'cross run' portion
17
17
# cross run --target $TARGET
You can’t perform that action at this time.
0 commit comments