File tree 5 files changed +51
-291
lines changed 5 files changed +51
-291
lines changed Original file line number Diff line number Diff line change 5
5
6
6
name : Continuous integration
7
7
8
+ env :
9
+ RUSTFLAGS : ' -D warnings'
10
+
8
11
jobs :
9
12
ci-linux :
10
13
runs-on : ubuntu-latest
37
40
- uses : actions-rs/cargo@v1
38
41
with :
39
42
command : check
40
- args : --target=${{ matrix.TARGET }} --features unstable
43
+ args : --target=${{ matrix.TARGET }}
41
44
- uses : actions-rs/cargo@v1
42
- if : ${{ matrix.rust == 'nightly' }}
43
45
with :
44
46
command : test
45
- args : --target=${{ matrix.TARGET }} --features unstable
47
+ args : --target=${{ matrix.TARGET }}
Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
6
6
name : Clippy check
7
+
8
+ env :
9
+ RUSTFLAGS : ' -D warnings'
10
+
7
11
jobs :
8
12
clippy_check :
9
13
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ### Changed
11
+
12
+ - [ breaking-change] The ` unstable ` feature and its code has been removed.
13
+ This includes the macros ` try_nb! ` and ` await! ` .
14
+
15
+ ## [ v0.1.2] - 2019-04-21
16
+
17
+ ### Added
18
+
19
+ - ` Error<E> ` gained a ` map ` method that lets you transform the error in the
20
+ ` Error::Other ` variant into a different type.
21
+
22
+ - ` Error<E> ` now implements the ` From<E> ` trait.
23
+
10
24
## [ v0.1.1] - 2018-01-10
11
25
12
26
### Fixed
@@ -17,5 +31,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
17
31
18
32
Initial release
19
33
20
- [ Unreleased ] : https://github.com/japaric/nb/compare/v0.1.1...HEAD
21
- [ v0.1.1 ] : https://github.com/japaric/nb/compare/v0.1.0...v0.1.1
34
+ [ Unreleased ] : https://github.com/rust-embedded/nb/compare/v0.1.2...HEAD
35
+ [ v0.1.2 ] : https://github.com/rust-embedded/nb/compare/v0.1.1...v0.1.2
36
+ [ v0.1.1 ] : https://github.com/rust-embedded/nb/compare/v0.1.0...v0.1.1
Original file line number Diff line number Diff line change @@ -9,10 +9,5 @@ repository = "https://github.com/rust-embedded/nb"
9
9
homepage = " https://github.com/rust-embedded/nb"
10
10
documentation = " https://docs.rs/nb"
11
11
readme = " README.md"
12
- version = " 0.1.1"
13
-
14
- [features ]
15
- unstable = []
16
-
17
- [dev-dependencies ]
18
- futures = " 0.1.17"
12
+ version = " 0.1.2"
13
+ edition = " 2018"
You can’t perform that action at this time.
0 commit comments