File tree Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Expand file tree Collapse file tree 4 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ before_cache:
3535
3636branches :
3737 only :
38- - auto
39- - master
40- - try
38+ - trying
39+ - staging
4140
4241notifications :
4342 email :
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99
10+ ## [ v0.2.0] - 2018-05-14
11+
12+ ### Changed
13+
14+ - [ breaking-change] moved to v0.2.x of ` embedded-hal ` .
15+
1016## [ v0.1.1] - 2018-02-13
1117
1218### Added
Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ keywords = ["Linux", "hal"]
66license = " MIT OR Apache-2.0"
77name = " linux-embedded-hal"
88repository = " https://github.com/japaric/linux-embedded-hal"
9- version = " 0.1.1 "
9+ version = " 0.2.0 "
1010
1111[dependencies ]
12- embedded-hal = " 0.1 .0"
12+ embedded-hal = " 0.2 .0"
1313i2cdev = " 0.3.1"
1414spidev = " 0.3.0"
1515sysfs_gpio = " 0.5.1"
Original file line number Diff line number Diff line change @@ -110,14 +110,6 @@ impl Pin {
110110}
111111
112112impl hal:: digital:: OutputPin for Pin {
113- fn is_low ( & self ) -> bool {
114- unimplemented ! ( )
115- }
116-
117- fn is_high ( & self ) -> bool {
118- unimplemented ! ( )
119- }
120-
121113 fn set_low ( & mut self ) {
122114 self . 0 . set_value ( 0 ) . unwrap ( )
123115 }
You can’t perform that action at this time.
0 commit comments