File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,20 @@ All user visible changes to `cucumber` crate will be documented in this file. Th
66
77
88
9+ ## [ 0.10.1] · 2021-10-??
10+ [ 0.10.1 ] : /../../tree/v0.10.1
11+
12+ [ Diff] ( /../../compare/v0.10.0...v0.10.1 ) | [ Milestone] ( /../../milestone/4 )
13+
14+ ### Fixed
15+
16+ - Console output hanging because of executing wrong ` Concurrent ` ` Scenario ` s. ([ #146 ] )
17+
18+ [ #146 ] : /../../pull/146
19+
20+
21+
22+
923## [ 0.10.0] · 2021-10-26
1024[ 0.10.0 ] : /../../tree/v0.10.0
1125
Original file line number Diff line number Diff line change @@ -1217,7 +1217,7 @@ impl Features {
12171217 let mut scenarios = self . scenarios . lock ( ) . await ;
12181218 scenarios
12191219 . get_mut ( & ScenarioType :: Serial )
1220- . and_then ( |s| s . pop ( ) . map ( |s | vec ! [ s] ) )
1220+ . and_then ( |s| ( !s . is_empty ( ) ) . then ( | | vec ! [ s. remove ( 0 ) ] ) )
12211221 . or_else ( || {
12221222 scenarios. get_mut ( & ScenarioType :: Concurrent ) . and_then ( |s| {
12231223 ( !s. is_empty ( ) ) . then ( || {
You can’t perform that action at this time.
0 commit comments