cucumber 7.0.0 → 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -10,7 +10,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
10
10
 
11
11
  ---
12
12
 
13
- ## [In GIT](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...main)
13
+ ## [Unreleased](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...main)
14
14
 
15
15
  ### Added
16
16
 
@@ -22,7 +22,66 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
22
22
 
23
23
  ### Security fixes
24
24
 
25
- ## [7.0.0](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0)
25
+ ### Deprecated
26
+
27
+ ## [7.1.0](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...v7.1.0) (2021-10-12)
28
+
29
+ ### Added
30
+
31
+ - New `BeforeAll` and `AfterAll` hooks
32
+
33
+ More information about hooks can be found in
34
+ [features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
35
+
36
+ ([1569](https://github.com/cucumber/cucumber-ruby/pull/1569)
37
+ [aurelien-reeves](https://github.com/aurelien-reeves))
38
+
39
+ - New hook: `InstallPlugin`
40
+
41
+ It is intended to be used to install an external plugin, like cucumber-ruby-wire.
42
+
43
+ It is fired just after the `AfterConfiguration` one. Two parameters are given:
44
+ the same `configuration` instance that is given to `AfterConfiguration`,
45
+ and a [`registry_wrapper`](./lib/cucumber/glue/registry_wrapper.rb) which allows
46
+ plugins to have access to specific internal methods.
47
+
48
+ See [cucumber-ruby-wire](https://github.com/cucumber/cucumber-ruby-wire/) for a
49
+ usage example.
50
+
51
+ More information about hooks can be found in
52
+ [features/docs/writing_support_code/hooks/README.md](./features/docs/writing_support_code/hooks/README.md).
53
+
54
+ ([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
55
+ [aurelien-reeves](https://github.com/aurelien-reeves))
56
+
57
+ ### Changed
58
+
59
+ - Added release dates to CHANGELOG.md.
60
+ ([1543](https://github.com/cucumber/cucumber-ruby/pull/1573)
61
+ [AudTheCodeWitch](https://github.com/AudTheCodeWitch))
62
+
63
+ ### Deprecated
64
+
65
+ - `AfterConfiguration` is deprecated. Please use `InstallPlugin` or `BeforeAll` instead.
66
+ See the [UPGRADING.md](./UPGRADING.md#upgrading-to-710) to update your code accordingly.
67
+ ([1570](https://github.com/cucumber/cucumber-ruby/pull/1570))
68
+
69
+ - The built-in Wire protocol
70
+
71
+ The Wire protocol is still officially supported, but as an optional plugin rather
72
+ than a built-in feature. See the
73
+ [UPGRADING.md](./UPGRADING.md#upgrading-to-710)
74
+ to update your code accordingly.
75
+
76
+ ([1564](https://github.com/cucumber/cucumber-ruby/pull/1564)
77
+ [aurelien-reeves](https://github.com/aurelien-reeves))
78
+
79
+ ### Known issue
80
+
81
+ - There is a known issue with JRuby 9.3. For more info, see
82
+ [PR#1571](https://github.com/cucumber/cucumber-ruby/pull/1571).
83
+
84
+ ## [7.0.0](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0) (2021-07-19)
26
85
 
27
86
  ### Fixed
28
87
 
@@ -38,11 +97,11 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
38
97
 
39
98
  This brings some breaking changes in `Cucumber::Messages`.
40
99
  ([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
41
- [aurelien-reeves](https://github.com/aurelien-reeves))
100
+ [aurelien-reeves](https://github.com/aurelien-reeves))
42
101
 
43
102
  This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
44
103
  ([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
45
- [luke-hill](https://github.com/luke-hill))
104
+ [luke-hill](https://github.com/luke-hill))
46
105
 
47
106
  ### Removed
48
107
 
@@ -51,17 +110,17 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
51
110
  Windows, execute cucumber with `--no-color`, or install
52
111
  [ANSICON](https://github.com/adoxa/ansicon/) globally.
53
112
  ([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
54
- [yosukei3108](https://github.com/yosukei3108))
113
+ [yosukei3108](https://github.com/yosukei3108))
55
114
 
56
- ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0)
115
+ ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0) (2021-05-18)
57
116
 
58
117
  ### Fixed
59
118
 
60
119
  - `--dry-run` now supports `message` based-formatters
61
120
  ([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
62
- [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
63
- [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
64
- [aurelien-reeves](https://github.com/aurelien-reeves))
121
+ [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
122
+ [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
123
+ [aurelien-reeves](https://github.com/aurelien-reeves))
65
124
  - Step definitions now uses object instances created in the ParameterType
66
125
  ([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
67
126
  [1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
@@ -85,7 +144,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
85
144
 
86
145
  - Updated `cucumber-core` ~> 9.0.1
87
146
 
88
- ## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0)
147
+ ## [v6.0.0](https://github.com/cucumber/cucumber-ruby/compare/v5.3.0...v6.0.0) (2021-04-14)
89
148
 
90
149
  ### Added
91
150
 
@@ -115,7 +174,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
115
174
  ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
116
175
  [aurelien-reeves](https://github.com/aurelien-reeves))
117
176
 
118
- ## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0)
177
+ ## [5.3.0](https://github.com/cucumber/cucumber-ruby/compare/v5.2.0...v5.3.0) (2021-01-28)
119
178
 
120
179
  ### Added
121
180
 
@@ -133,31 +192,31 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
133
192
  [#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
134
193
  [aurelien-reeves](https://github.com/aurelien-reeves))
135
194
 
136
- ## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0)
195
+ ## [5.2.0](https://github.com/cucumber/cucumber-ruby/compare/v5.1.3...v5.2.0) (2020-10-21)
137
196
 
138
197
  ### Changed
139
198
 
140
199
  - `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
141
200
 
142
- ## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3)
201
+ ## [5.1.3](https://github.com/cucumber/cucumber-ruby/compare/v5.1.2...v5.1.3) (2020-10-07)
143
202
 
144
203
  ### Fixed
145
204
 
146
205
  - The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
147
206
 
148
- ## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2)
207
+ ## [5.1.2](https://github.com/cucumber/cucumber-ruby/compare/v5.1.1...v5.1.2) (2020-09-18)
149
208
 
150
209
  ### Fixed
151
210
 
152
211
  - Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
153
212
 
154
- ## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1)
213
+ ## [5.1.1](https://github.com/cucumber/cucumber-ruby/compare/v5.1.0...v5.1.1) (2020-09-04)
155
214
 
156
215
  ### Security fixes
157
216
 
158
217
  - Update `cucumber-create-meta` to 2.0.2
159
218
 
160
- ## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0)
219
+ ## [5.1.0](https://github.com/cucumber/cucumber-ruby/compare/v5.0.0...5.1.0) (2020-08-24)
161
220
 
162
221
  ### Added
163
222
 
@@ -176,7 +235,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
176
235
 
177
236
  - Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
178
237
 
179
- ## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0)
238
+ ## [5.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.1.0...5.0.0) (2020-08-19)
180
239
 
181
240
  ### Added
182
241
 
@@ -207,7 +266,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
207
266
  - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
208
267
  - Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
209
268
 
210
- ## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0)
269
+ ## [4.1.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.1...v4.1.0) (2020-07-01)
211
270
 
212
271
  ### Changed
213
272
 
@@ -226,13 +285,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
226
285
 
227
286
  - `AfterStep` hook do not cause issue when running `message` formatter. [#1433](https://github.com/cucumber/cucumber-ruby/issues/1433) - [#1434](https://github.com/cucumber/cucumber-ruby/pull/1434)
228
287
 
229
- ## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1)
288
+ ## [4.0.1](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0...v4.0.1) (2020-06-23)
230
289
 
231
290
  ### Fixed
232
291
 
233
292
  - force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
234
293
 
235
- ## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0)
294
+ ## [4.0.0](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...v4.0.0) (2020-06-02)
236
295
 
237
296
  ### Changed
238
297
 
@@ -242,7 +301,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
242
301
 
243
302
  - Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
244
303
 
245
- ## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6)
304
+ ## [4.0.0.rc.6](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.5...4.0.0.rc.6) (2020-04-24)
246
305
 
247
306
  ### Changed
248
307
 
@@ -270,7 +329,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
270
329
  - use `PUT` method by default
271
330
  - use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
272
331
 
273
- ## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5)
332
+ ## [4.0.0.rc.5](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.4...4.0.0.rc.5) (2020-03-17)
274
333
 
275
334
  ### Added
276
335
 
@@ -282,7 +341,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
282
341
  Other `http-` prefixed query parameters will be converted to request headers
283
342
  (with the `http-` prefix stripped off).
284
343
 
285
- ## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4)
344
+ ## [4.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.3...4.0.0.rc.4) (2020-02-24)
286
345
 
287
346
  ### Added
288
347
 
@@ -296,13 +355,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
296
355
  - `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
297
356
  - `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
298
357
 
299
- ## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3)
358
+ ## [4.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.2...v4.0.0.rc.3) (2019-10-31)
300
359
 
301
360
  ### Changed
302
361
 
303
362
  - Update to cucumber-wire 1.1.
304
363
 
305
- ## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2)
364
+ ## [4.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v4.0.0.rc.1...v4.0.0.rc.2) (2019-10-31)
306
365
 
307
366
  ### Added
308
367
 
@@ -520,7 +579,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
520
579
  - As per [#251](https://github.com/cucumber/cucumber/issues/251): renamed History.md to CHANGELOG.md, added contributing message at beginning, and misc formatting. ([#1185](https://github.com/cucumber/cucumber-ruby/issues/1185) [jaysonesmith](https://github.com/jaysonesmith))
521
580
  - Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
522
581
 
523
- ## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2)
582
+ ## [3.0.0.pre.2](https://github.com/cucumber/cucumber-ruby/compare/v2.4.0...v3.0.0.pre.2) (2017-07-26)
524
583
 
525
584
  ### Breaking changes
526
585
 
@@ -596,7 +655,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
596
655
  - Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
597
656
  - Change the Progress, Usage and Stepdef formatter use events ([#977](https://github.com/cucumber/cucumber-ruby/pull/977), [#1129](https://github.com/cucumber/cucumber-ruby/pull/1129) @brasmusson)
598
657
 
599
- ## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0)
658
+ ## [2.4.0](https://github.com/cucumber/cucumber-ruby/compare/v2.3.3...v2.4.0) (2016-06-09)
600
659
 
601
660
  ### New Features
602
661
 
@@ -612,7 +671,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
612
671
  - Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
613
672
  - Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
614
673
 
615
- ## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3)
674
+ ## [2.3.3](https://github.com/cucumber/cucumber-ruby/compare/v2.3.2...v2.3.3) (2016-03-18)
616
675
 
617
676
  Added a message pointing users to [The Great Cucumber and BDD Census of 2016](https://cucumber.typeform.com/to/kjrSc2?audience=cucumber-ruby) to the installer message. Please take a few moments to help us all learn more about how you're using Cucumber and BDD.
618
677
 
@@ -621,15 +680,15 @@ Added a message pointing users to [The Great Cucumber and BDD Census of 2016](ht
621
680
  - Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
622
681
  - Stringifying location in the JSON formatter for more consistent json parsing ([949](https://github.com/cucumber/cucumber-ruby/pull/949), [945](https://github.com/cucumber/cucumber-ruby/issues/945) @larryprice)
623
682
 
624
- ## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2)
683
+ ## [2.3.2](https://github.com/cucumber/cucumber-ruby/compare/v2.3.1...v2.3.2) (2016-01-21)
625
684
 
626
685
  Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
627
686
 
628
- ## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1)
687
+ ## [2.3.1](https://github.com/cucumber/cucumber-ruby/compare/v2.3.0...v2.3.1) (2016-01-20)
629
688
 
630
689
  Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
631
690
 
632
- ## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0)
691
+ ## [2.3.0](https://github.com/cucumber/cucumber-ruby/compare/v2.2.0...v2.3.0) (2016-01-13)
633
692
 
634
693
  ### New Features
635
694
 
@@ -639,7 +698,7 @@ Better deprecation warnings to help fix https://github.com/cucumber/cucumber-rub
639
698
 
640
699
  ### Refactoring
641
700
 
642
- ## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0)
701
+ ## [2.2.0](https://github.com/cucumber/cucumber-ruby/compare/v2.1.0...v2.2.0) (2016-01-08)
643
702
 
644
703
  Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
645
704
  could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
@@ -656,7 +715,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
656
715
  - Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
657
716
  - Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
658
717
 
659
- ## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0)
718
+ ## [2.1.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.2...v2.1.0) (2015-09-11)
660
719
 
661
720
  ### New Features
662
721
 
@@ -676,14 +735,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
676
735
  - Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
677
736
  - Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
678
737
 
679
- ## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2)
738
+ ## [2.0.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.1...v2.0.2) (2015-07-15)
680
739
 
681
740
  ### Bugfixes
682
741
 
683
742
  - Revert interface change in Cucumber::Formatter::Console (which can break custom formatters in v2.0.1) ([893](https://github.com/cucumber/cucumber-ruby/issues/893) @brasmusson).
684
743
  - Calculate the locations of hooks properly (so it also work between drives on Windows) ([885](https://github.com/cucumber/cucumber-ruby/issues/885) @brasmusson).
685
744
 
686
- ## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1)
745
+ ## [2.0.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0...v2.0.1) (2015-07-08)
687
746
 
688
747
  ### New Features
689
748
 
@@ -710,7 +769,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
710
769
  - Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
711
770
  - Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
712
771
 
713
- ## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0)
772
+ ## [2.0.0](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.5...v2.0.0) (2015-03-31)
714
773
 
715
774
  ### New Features
716
775
 
@@ -722,7 +781,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
722
781
  - Ensure After Hooks execute in reverse order (@tooky)
723
782
  - Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
724
783
 
725
- ## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5)
784
+ ## [2.0.0.rc5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.4...v2.0.0.rc.5) (2015-03-19)
726
785
 
727
786
  ### New Features
728
787
 
@@ -739,7 +798,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
739
798
  - JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
740
799
  - Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
741
800
 
742
- ## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4)
801
+ ## [2.0.0.rc.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.3...2.0.0.rc.4) (2015-02-15)
743
802
 
744
803
  ### Features
745
804
 
@@ -753,19 +812,19 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
753
812
  - Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
754
813
  - Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
755
814
 
756
- ## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3)
815
+ ## [2.0.0.rc.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.2...v2.0.0.rc.3) (2015-01-23)
757
816
 
758
817
  ### Bugfixes
759
818
 
760
819
  - MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
761
820
 
762
- ## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2)
821
+ ## [2.0.0.rc.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.rc.1...v2.0.0.rc.2) (2015-01-23)
763
822
 
764
823
  ### Bugfixes
765
824
 
766
825
  - World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
767
826
 
768
- ## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1)
827
+ ## [2.0.0.rc.1](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.5...v2.0.0.rc.1) (2015-01-23)
769
828
 
770
829
  ### Removed Features
771
830
 
@@ -784,11 +843,11 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
784
843
  - Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
785
844
  - Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
786
845
 
787
- ## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5)
846
+ ## [2.0.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.4...v2.0.0.beta.5) (2014-12-18)
788
847
 
789
848
  - Depend on the correct version of core (@tooky)
790
849
 
791
- ## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4)
850
+ ## [2.0.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.3...v2.0.0.beta.4) (2014-12-18)
792
851
 
793
852
  ### New Features
794
853
 
@@ -804,7 +863,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
804
863
 
805
864
  - Re-write rerun formatter against new formatter API
806
865
 
807
- ## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3)
866
+ ## [2.0.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.2...v2.0.0.beta.3) (2014-09-14)
808
867
 
809
868
  ### Removed Features
810
869
 
@@ -824,14 +883,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
824
883
  - Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
825
884
  - Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
826
885
 
827
- ## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2)
886
+ ## [2.0.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v2.0.0.beta.1...v2.0.0.beta.2) (2014-08-29)
828
887
 
829
888
  ### Bugfixes
830
889
 
831
890
  - Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
832
891
  - Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
833
892
 
834
- ## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1)
893
+ ## [2.0.0.beta.1 ](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v2.0.0.beta.1) (2014-08-22)
835
894
 
836
895
  Version 2.0 contains a major internal redesign, extracting the core logic of
837
896
  parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
@@ -866,53 +925,53 @@ all.
866
925
 
867
926
  - Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
868
927
 
869
- ## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16)
928
+ ## [1.3.16](https://github.com/cucumber/cucumber-ruby/compare/v1.3.15...v1.3.16) (2014-07-28)
870
929
 
871
930
  - Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
872
931
  - Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
873
932
  - Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
874
933
 
875
- ## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15)
934
+ ## [1.3.15](https://github.com/cucumber/cucumber-ruby/compare/v1.3.14...v1.3.15) (2014-05-09)
876
935
 
877
936
  - Fixed intermittent ConcurrencyError seen in JRuby
878
937
  ([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
879
938
 
880
- ## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14)
939
+ ## [1.3.14](https://github.com/cucumber/cucumber-ruby/compare/v1.3.13...v1.3.14) (2014-03-28)
881
940
 
882
941
  - Rerun formatter includes all scenarios when the background fails
883
942
  ([660](https://github.com/cucumber/cucumber-ruby/issues/660),
884
943
  [661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
885
944
 
886
- ## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13)
945
+ ## [1.3.13](https://github.com/cucumber/cucumber-ruby/compare/v1.3.12...v1.3.13) (2014-03-25)
887
946
 
888
947
  - Rerun formatter includes all scenarios when the background fails
889
948
  ([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
890
949
 
891
- ## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12)
950
+ ## [1.3.12](https://github.com/cucumber/cucumber-ruby/compare/v1.3.11...v1.3.12) (2014-03-16)
892
951
 
893
952
  - Use MultiTest to handle assertions library selection (@tooky)
894
953
  - Adds full support for rails 4.1 / Minitest
895
954
 
896
- ## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11)
955
+ ## [1.3.11](https://github.com/cucumber/cucumber-ruby/compare/v1.3.10...v1.3.11) (2014-03-02)
897
956
 
898
957
  - Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
899
958
 
900
- ## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10)
959
+ ## [1.3.10](https://github.com/cucumber/cucumber-ruby/compare/v1.3.9...v1.3.10) (2013-11-16)
901
960
 
902
961
  - Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
903
962
 
904
- ## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9)
963
+ ## [1.3.9](https://github.com/cucumber/cucumber-ruby/compare/v1.3.8...v1.3.9) (2013-11-06)
905
964
 
906
965
  - Disable minitest autorun after loading support files (@tooky)
907
966
  - Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
908
967
  - Remove deprecation warnings on `Ast::Table` (@tooky)
909
968
  - Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
910
969
 
911
- ## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8)
970
+ ## [1.3.8](https://github.com/cucumber/cucumber-ruby/compare/v1.3.7...v1.3.8) (2013-09-10)
912
971
 
913
972
  - Make the MultiJson dependency less restrictive (@tooky)
914
973
 
915
- ## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7)
974
+ ## [1.3.7](https://github.com/cucumber/cucumber-ruby/compare/v1.3.6...v1.3.7) (2013-09-06)
916
975
 
917
976
  - Fixed incorrect html formatter behaviour when background step fails
918
977
  ([520](https://github.com/cucumber/cucumber-ruby/issues/520),
@@ -931,20 +990,20 @@ all.
931
990
  - AST::Table#map_headers doesn't use #map_headers! anymore
932
991
  ([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
933
992
 
934
- ## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6)
993
+ ## [1.3.6](https://github.com/cucumber/cucumber-ruby/compare/v1.3.5...v1.3.6) (2013-08-09)
935
994
 
936
995
  - Html formatter fixed to not mark passes scenarios with tables as pending
937
996
  ([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
938
997
 
939
- ## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5)
998
+ ## [1.3.5](https://github.com/cucumber/cucumber-ruby/compare/v1.3.4...v1.3.5) (2013-07-19)
940
999
 
941
1000
  - Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
942
1001
 
943
- ## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4)
1002
+ ## [1.3.4](https://github.com/cucumber/cucumber-ruby/compare/v1.3.3...v1.3.4) (2013-07-12)
944
1003
 
945
1004
  - JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
946
1005
 
947
- ## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3)
1006
+ ## [1.3.3](https://github.com/cucumber/cucumber-ruby/compare/v1.3.2...v1.3.3) (2013-07-07)
948
1007
 
949
1008
  - Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
950
1009
  - Warn that Spork support is broken (Steve Tooke)
@@ -952,20 +1011,20 @@ all.
952
1011
  ([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
953
1012
  - Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
954
1013
 
955
- ## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2)
1014
+ ## [1.3.2](https://github.com/cucumber/cucumber-ruby/compare/v1.3.1...v1.3.2) (2013-05-22)
956
1015
 
957
1016
  ### Bugfixes
958
1017
 
959
1018
  - Fixed ugly NoMethodError when a Scenario Outline has no Examples
960
1019
  ([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
961
1020
 
962
- ## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1)
1021
+ ## [1.3.1](https://github.com/cucumber/cucumber-ruby/compare/v1.3.0...v1.3.1) (2013-04-21)
963
1022
 
964
1023
  ### Bugfixes
965
1024
 
966
1025
  - Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
967
1026
 
968
- ## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0)
1027
+ ## [1.3.0](https://github.com/cucumber/cucumber-ruby/compare/v1.2.5...v1.3.0) (2013-04-21)
969
1028
 
970
1029
  ### New Features
971
1030
 
@@ -1002,23 +1061,23 @@ all.
1002
1061
  - Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
1003
1062
  ([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
1004
1063
 
1005
- ## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5)
1064
+ ## [1.2.5](https://github.com/cucumber/cucumber-ruby/compare/v1.2.3...v1.2.5) (2013-04-08)
1006
1065
 
1007
1066
  - Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
1008
1067
  - Do not use TagExpression.eval() which is deprecated in Gherkin 2.11.7 ([#420](https://github.com/cucumber/cucumber-ruby/issues/420) Oleg Sukhodolsky)
1009
1068
 
1010
- ## 1.2.4
1069
+ ## 1.2.4 (2013-04-07)
1011
1070
 
1012
1071
  Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1013
1072
 
1014
- ## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3)
1073
+ ## [1.2.3](https://github.com/cucumber/cucumber-ruby/compare/v1.2.2...v1.2.3) (2013-03-07)
1015
1074
 
1016
1075
  ### Bugfixes
1017
1076
 
1018
1077
  - Fix problem with rake task for jruby and ruby installed from packages on Ubuntu ([#386](https://github.com/cucumber/cucumber-ruby/issues/386), [#388](https://github.com/cucumber/cucumber-ruby/issues/388) @y-higuchi)
1019
1078
  - Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
1020
1079
 
1021
- ## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2)
1080
+ ## [1.2.2](https://github.com/cucumber/cucumber-ruby/compare/v1.2.1...v1.2.2) (2013-03-02)
1022
1081
 
1023
1082
  ### New Features
1024
1083
 
@@ -1039,13 +1098,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1039
1098
  - Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
1040
1099
  - Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
1041
1100
 
1042
- ## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1)
1101
+ ## [1.2.1](https://github.com/cucumber/cucumber-ruby/compare/v1.2.0...v1.2.1) (2012-06-09)
1043
1102
 
1044
1103
  ### New Features
1045
1104
 
1046
1105
  - Updated to gherkin 2.11.0. (Aslak Hellesøy)
1047
1106
 
1048
- ## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0)
1107
+ ## [1.2.0](https://github.com/cucumber/cucumber-ruby/compare/v1.1.9...v1.2.0) (2012-05-07)
1049
1108
 
1050
1109
  ### Bugfixes
1051
1110
 
@@ -1064,13 +1123,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1064
1123
  - JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
1065
1124
  - Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
1066
1125
 
1067
- ## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9)
1126
+ ## [1.1.9](https://github.com/cucumber/cucumber-ruby/compare/v1.1.8...v1.1.9) (2012-02-22)
1068
1127
 
1069
1128
  ### Bugfixes
1070
1129
 
1071
1130
  - Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
1072
1131
 
1073
- ## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8)
1132
+ ## [1.1.8](https://github.com/cucumber/cucumber-ruby/compare/v1.1.7...v1.1.8) (2012-02-19)
1074
1133
 
1075
1134
  ### Bugfixes
1076
1135
 
@@ -1080,13 +1139,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1080
1139
 
1081
1140
  - Don't pollute RbWorld with the AnsiEscapes methods ([#219](https://github.com/cucumber/cucumber-ruby/issues/219), [#221](https://github.com/cucumber/cucumber-ruby/pull/221) Ben Woosley)
1082
1141
 
1083
- ## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7)
1142
+ ## [1.1.7](https://github.com/cucumber/cucumber-ruby/compare/v1.1.6...v1.1.7) (2012-02-19)
1084
1143
 
1085
1144
  ### Bugfixes
1086
1145
 
1087
1146
  - Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
1088
1147
 
1089
- ## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6)
1148
+ ## [1.1.6](https://github.com/cucumber/cucumber-ruby/compare/v1.1.5...v1.1.6) (2012-02-18)
1090
1149
 
1091
1150
  ### New features
1092
1151
 
@@ -1099,7 +1158,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1099
1158
  - After some infantile bickering about a trivial bug that any hipster startup ruby programmer could have circumvented by using a fork with a fix,
1100
1159
  I finally sucked up to a horde of people and made HTML reports work again (I'm gonna rename them TPS reports). ([#203](https://github.com/cucumber/cucumber-ruby/pull/203) Jon Merrifield)
1101
1160
 
1102
- ## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5)
1161
+ ## [1.1.5](https://github.com/cucumber/cucumber-ruby/compare/v1.1.4...v1.1.5) (2012-02-17)
1103
1162
 
1104
1163
  ### New Features
1105
1164
 
@@ -1109,13 +1168,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1109
1168
 
1110
1169
  - Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
1111
1170
 
1112
- ## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4)
1171
+ ## [1.1.4](https://github.com/cucumber/cucumber-ruby/compare/v1.1.3...v1.1.4) (2011-12-10)
1113
1172
 
1114
1173
  ### New Features
1115
1174
 
1116
1175
  - Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
1117
1176
 
1118
- ## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3)
1177
+ ## [1.1.3](https://github.com/cucumber/cucumber-ruby/compare/v1.1.2...v1.1.3) (2011-11-22)
1119
1178
 
1120
1179
  ### New Features
1121
1180
 
@@ -1129,7 +1188,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1129
1188
  - Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
1130
1189
  - Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
1131
1190
 
1132
- ## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2)
1191
+ ## [1.1.2](https://github.com/cucumber/cucumber-ruby/compare/v1.1.1...v1.1.2) (2011-11-09)
1133
1192
 
1134
1193
  ### Changed features
1135
1194
 
@@ -1150,25 +1209,25 @@ New format:
1150
1209
 
1151
1210
  Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/master/gherkin/History.md) for info about new `id` and `uri` elements in the JSON.
1152
1211
 
1153
- ## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0)
1212
+ ## [1.1.0](https://github.com/cucumber/cucumber-ruby/compare/v1.0.6...v1.1.0) (2011-09-22)
1154
1213
 
1155
1214
  ### Changed features
1156
1215
 
1157
1216
  - The JSON formatter output has changed. See [Gherkin 2.5.0 History](https://github.com/cucumber/gherkin/blob/master/CHANGELOG.md) (Aslak Hellesøy)
1158
1217
 
1159
- ## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6)
1218
+ ## [1.0.6](https://github.com/cucumber/cucumber-ruby/compare/v1.0.5...v1.0.6) (2011-09-13)
1160
1219
 
1161
1220
  ### Bugfixes
1162
1221
 
1163
1222
  - Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1164
1223
 
1165
- ## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5)
1224
+ ## [1.0.5](https://github.com/cucumber/cucumber-ruby/compare/v1.0.4...v1.0.5) (2011-09-13)
1166
1225
 
1167
1226
  ### Bugfixes
1168
1227
 
1169
1228
  - Gemspec corrupted in 1.0.4 (I had to upgrade my rubygems to 1.8.10 to fix it). ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1170
1229
 
1171
- ## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4)
1230
+ ## [1.0.4](https://github.com/cucumber/cucumber-ruby/compare/v1.0.3...v1.0.4) (2011-09-11)
1172
1231
 
1173
1232
  ### Bugfixes
1174
1233
 
@@ -1178,7 +1237,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1178
1237
  - Patched unmatched message in HTML formatter. (Nikita)
1179
1238
  - Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
1180
1239
 
1181
- ## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3)
1240
+ ## [1.0.3](https://github.com/cucumber/cucumber-ruby/compare/v1.0.2...v1.0.3) (2011-09-07)
1182
1241
 
1183
1242
  ### Bugfixes
1184
1243
 
@@ -1188,7 +1247,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1188
1247
 
1189
1248
  - DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
1190
1249
 
1191
- ## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2)
1250
+ ## [1.0.2](https://github.com/cucumber/cucumber-ruby/compare/v1.0.1...v1.0.2) (2011-07-17)
1192
1251
 
1193
1252
  ### Bugfixes
1194
1253
 
@@ -1202,7 +1261,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1202
1261
 
1203
1262
  - --no-source also excludes location from the summary. (Aslak Hellesøy)
1204
1263
 
1205
- ## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1)
1264
+ ## [1.0.1](https://github.com/cucumber/cucumber-ruby/compare/v1.0.0...v1.0.1) (2011-07-10)
1206
1265
 
1207
1266
  ### Bugfixes
1208
1267
 
@@ -1216,7 +1275,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1216
1275
 
1217
1276
  - If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
1218
1277
 
1219
- ## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0)
1278
+ ## [1.0.0](https://github.com/cucumber/cucumber-ruby/compare/v0.10.6...v1.0.0) (2011-06-20)
1220
1279
 
1221
1280
  Yipeeeeeeeee!
1222
1281
 
@@ -1226,7 +1285,7 @@ Yipeeeeeeeee!
1226
1285
  - Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
1227
1286
  - Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
1228
1287
 
1229
- ## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6)
1288
+ ## [0.10.6](https://github.com/cucumber/cucumber-ruby/compare/v0.10.5...v0.10.6) (2011-06-07)
1230
1289
 
1231
1290
  ### New Features
1232
1291
 
@@ -1236,7 +1295,7 @@ Yipeeeeeeeee!
1236
1295
 
1237
1296
  - Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
1238
1297
 
1239
- ## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5)
1298
+ ## [0.10.5](https://github.com/cucumber/cucumber-ruby/compare/v0.10.3...v0.10.5) (2011-06-05)
1240
1299
 
1241
1300
  (0.10.4 was forgotten!)
1242
1301
 
@@ -1254,7 +1313,7 @@ Yipeeeeeeeee!
1254
1313
  - Fix for Gem.available? deprecation warning (#75 Jake Benilov)
1255
1314
  - Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
1256
1315
 
1257
- ## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3)
1316
+ ## [0.10.3](https://github.com/cucumber/cucumber-ruby/compare/v0.10.2...v0.10.3) (2011-05-23)
1258
1317
 
1259
1318
  ### New Features
1260
1319
 
@@ -1264,13 +1323,13 @@ Yipeeeeeeeee!
1264
1323
  - Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
1265
1324
  - JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
1266
1325
 
1267
- ## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2)
1326
+ ## [0.10.2](https://github.com/cucumber/cucumber-ruby/compare/v0.10.1...v0.10.2) (2011-03-20)
1268
1327
 
1269
1328
  ### Bugfixes
1270
1329
 
1271
1330
  - Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
1272
1331
 
1273
- ## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1)
1332
+ ## [0.10.1](https://github.com/cucumber/cucumber-ruby/compare/v0.10.0...v0.10.1) (2011-03-20)
1274
1333
 
1275
1334
  ### New Features
1276
1335
 
@@ -1292,7 +1351,7 @@ Yipeeeeeeeee!
1292
1351
  - Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
1293
1352
  - Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
1294
1353
 
1295
- ## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0)
1354
+ ## [0.10.0](https://github.com/cucumber/cucumber-ruby/compare/v0.9.4...v0.10.0) (2010-12-07)
1296
1355
 
1297
1356
  We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
1298
1357
  This should not affect users. The major new feature in this release is ANSICON support for Windows users.
@@ -1311,7 +1370,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1311
1370
 
1312
1371
  - JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
1313
1372
 
1314
- ## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4)
1373
+ ## [0.9.4](https://github.com/cucumber/cucumber-ruby/compare/v0.9.3...v0.9.4) (2010-11-06)
1315
1374
 
1316
1375
  ### Bugfixes
1317
1376
 
@@ -1321,7 +1380,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1321
1380
  - Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
1322
1381
  - Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
1323
1382
 
1324
- ## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3)
1383
+ ## [0.9.3](https://github.com/cucumber/cucumber-ruby/compare/v0.9.2...v0.9.3) (2010-10-24)
1325
1384
 
1326
1385
  ### Bugfixes
1327
1386
 
@@ -1330,19 +1389,19 @@ This should not affect users. The major new feature in this release is ANSICON s
1330
1389
  - Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
1331
1390
  - Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
1332
1391
 
1333
- ## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2)
1392
+ ## [0.9.2](https://github.com/cucumber/cucumber-ruby/compare/v0.9.1...v0.9.2) (2010-10-04)
1334
1393
 
1335
1394
  ### Bugfixes
1336
1395
 
1337
1396
  - Too many open files - getcwd (#666 Aslak Hellesøy)
1338
1397
 
1339
- ## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1)
1398
+ ## [0.9.1](https://github.com/cucumber/cucumber-ruby/compare/v0.9.0...v0.9.1) (2010-10-01)
1340
1399
 
1341
1400
  ### Bugfixes
1342
1401
 
1343
1402
  - Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
1344
1403
 
1345
- ## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0)
1404
+ ## [0.9.0](https://github.com/cucumber/cucumber-ruby/compare/v0.8.5...v0.9.0) (2010-09-21)
1346
1405
 
1347
1406
  Maintenance release for the new release of Gherkin 2.2.3.
1348
1407
 
@@ -1364,14 +1423,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
1364
1423
 
1365
1424
  - Big refactoring of StepMother (Matt Wynne)
1366
1425
 
1367
- ## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5)
1426
+ ## [0.8.5](https://github.com/cucumber/cucumber-ruby/compare/v0.8.4...v0.8.5) (2010-07-14)
1368
1427
 
1369
1428
  ### Bugfixes
1370
1429
 
1371
1430
  - Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
1372
1431
  - Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
1373
1432
 
1374
- ## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4)
1433
+ ## [0.8.4](https://github.com/cucumber/cucumber-ruby/compare/v0.8.3...v0.8.4) (2010-07-12)
1375
1434
 
1376
1435
  ### Bugfixes
1377
1436
 
@@ -1382,7 +1441,7 @@ Maintenance release for the new release of Gherkin 2.2.3.
1382
1441
  - Detect limit for negative tags (#636 Aslak Hellesøy)
1383
1442
  - Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
1384
1443
 
1385
- ## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3)
1444
+ ## [0.8.3](https://github.com/cucumber/cucumber-ruby/compare/v0.8.2...v0.8.3) (2010-06-16)
1386
1445
 
1387
1446
  Just a quick bugfix release.
1388
1447
 
@@ -1390,7 +1449,7 @@ Just a quick bugfix release.
1390
1449
 
1391
1450
  - Scenario outlines that fail with exception exit process (Aslak Hellesøy)
1392
1451
 
1393
- ## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2)
1452
+ ## [0.8.2](https://github.com/cucumber/cucumber-ruby/compare/v0.8.1...v0.8.2) (2010-06-16)
1394
1453
 
1395
1454
  Bugfix release which most importantly fixes an issue with the gem's gemspec.
1396
1455
 
@@ -1405,7 +1464,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1405
1464
 
1406
1465
  - JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
1407
1466
 
1408
- ## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1)
1467
+ ## [0.8.1](https://github.com/cucumber/cucumber-ruby/compare/v0.8.0...v0.8.1) (2010-06-14)
1409
1468
 
1410
1469
  ### Bufixes
1411
1470
 
@@ -1415,7 +1474,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1415
1474
 
1416
1475
  - Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
1417
1476
 
1418
- ## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0)
1477
+ ## [0.8.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.3...v0.8.0) (2010-06-06)
1419
1478
 
1420
1479
  ### Bugfixes
1421
1480
 
@@ -1438,20 +1497,20 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1438
1497
  - Ruby snippets will use "([^"]_)" instead of "([^\"]_)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
1439
1498
  - Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
1440
1499
 
1441
- ## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3)
1500
+ ## [0.7.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.2...v0.7.3) (2010-05-17)
1442
1501
 
1443
1502
  ### New Features
1444
1503
 
1445
1504
  - Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
1446
1505
  - Added support for Around hooks. (#605 John Firebaugh)
1447
1506
 
1448
- ## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2)
1507
+ ## [0.7.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.1...v0.7.2) (2010-05-04)
1449
1508
 
1450
1509
  ### Bugfixes
1451
1510
 
1452
1511
  - REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
1453
1512
 
1454
- ## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1)
1513
+ ## [0.7.1](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0...v0.7.1) (2010-05-03)
1455
1514
 
1456
1515
  ### Bugfixes
1457
1516
 
@@ -1461,32 +1520,32 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1461
1520
 
1462
1521
  - Ruby and Javascript snippets will use "([^"]_)" instead of "([^\"]_)"$/ (Aslak Hellesøy)
1463
1522
 
1464
- ## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0)
1523
+ ## [0.7.0](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.8...v0.7.0) (2010-05-02)
1465
1524
 
1466
1525
  This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
1467
1526
  files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
1468
1527
  instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1469
1528
 
1470
- ## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8)
1529
+ ## [0.7.0.beta.8](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.7...v0.7.0.beta.8) (2010-04-29)
1471
1530
 
1472
1531
  ### Bugfixes
1473
1532
 
1474
1533
  - Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
1475
1534
  - Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
1476
1535
 
1477
- ## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7)
1536
+ ## [0.7.0.beta.7](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.6...v0.7.0.beta.7) (2010-04-28)
1478
1537
 
1479
1538
  ### Bugfixes
1480
1539
 
1481
1540
  - Depend on gherkin-1.0.22, which should now make things work on Windows and Ruby 1.8.x-1.9.x. (Aslak Hellesøy)
1482
1541
 
1483
- ## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6)
1542
+ ## [0.7.0.beta.6](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.5...v0.7.0.beta.6) (2010-04-28)
1484
1543
 
1485
1544
  ### Bugfixes
1486
1545
 
1487
1546
  - Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
1488
1547
 
1489
- ## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5)
1548
+ ## [0.7.0.beta.5](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.4...v0.7.0.beta.5) (2010-04-27)
1490
1549
 
1491
1550
  ### New Features
1492
1551
 
@@ -1496,7 +1555,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1496
1555
 
1497
1556
  - No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
1498
1557
 
1499
- ## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4)
1558
+ ## [0.7.0.beta.4](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.3...v0.7.0.beta.4) (2010-04-23)
1500
1559
 
1501
1560
  ### New Features
1502
1561
 
@@ -1506,19 +1565,19 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1506
1565
 
1507
1566
  - Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
1508
1567
 
1509
- ## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3)
1568
+ ## [0.7.0.beta.3](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.2...v0.7.0.beta.3) (2010-04-23)
1510
1569
 
1511
1570
  ### Changed Features
1512
1571
 
1513
1572
  - Step Definitions and calling steps from step definitions can again use And and But (was removed in 0.7.0.beta.2) (Aslak Hellesøy)
1514
1573
 
1515
- ## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2)
1574
+ ## [0.7.0.beta.2](https://github.com/cucumber/cucumber-ruby/compare/v0.7.0.beta.1...v0.7.0.beta.2) (2010-04-21)
1516
1575
 
1517
1576
  ### New Features
1518
1577
 
1519
1578
  - Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
1520
1579
 
1521
- ## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1)
1580
+ ## [0.7.0.beta.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.4...v0.7.0.beta.1) (2010-04-20)
1522
1581
 
1523
1582
  Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
1524
1583
  Parse times are up to 100 times faster.
@@ -1531,7 +1590,7 @@ Parse times are up to 100 times faster.
1531
1590
 
1532
1591
  - New i18n translations now have to be contributed to the gherkin project.
1533
1592
 
1534
- ## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4)
1593
+ ## [0.6.4](https://github.com/cucumber/cucumber-ruby/compare/v0.6.3...v0.6.4) (2010-03-30)
1535
1594
 
1536
1595
  ### Bugfixes
1537
1596
 
@@ -1555,7 +1614,7 @@ Parse times are up to 100 times faster.
1555
1614
  - Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
1556
1615
  Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
1557
1616
 
1558
- ## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3)
1617
+ ## [0.6.3](https://github.com/cucumber/cucumber-ruby/compare/v0.6.2...v0.6.3) (2010-03-02)
1559
1618
 
1560
1619
  ### Bugfixes
1561
1620
 
@@ -1576,7 +1635,7 @@ Parse times are up to 100 times faster.
1576
1635
  - Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
1577
1636
  - Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
1578
1637
 
1579
- ## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2)
1638
+ ## [0.6.2](https://github.com/cucumber/cucumber-ruby/compare/v0.6.1...v0.6.2) (2010-01-17)
1580
1639
 
1581
1640
  ### Bugfixes
1582
1641
 
@@ -1596,13 +1655,13 @@ Parse times are up to 100 times faster.
1596
1655
 
1597
1656
  - element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
1598
1657
 
1599
- ## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1)
1658
+ ## [0.6.1](https://github.com/cucumber/cucumber-ruby/compare/v0.6.0...v0.6.1) (2010-01-03)
1600
1659
 
1601
1660
  ### Bugfixes
1602
1661
 
1603
1662
  - Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
1604
1663
 
1605
- ## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0)
1664
+ ## [0.6.0](https://github.com/cucumber/cucumber-ruby/compare/v0.5.3...v0.6.0) (2010-01-03)
1606
1665
 
1607
1666
  Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
1608
1667
 
@@ -1629,7 +1688,7 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
1629
1688
  - All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
1630
1689
  - Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
1631
1690
 
1632
- ## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3)
1691
+ ## [0.5.3](https://github.com/cucumber/cucumber-ruby/compare/v0.5.2...v0.5.3) (2009-12-22)
1633
1692
 
1634
1693
  Another small release today to please a sister project. This time Cuke4Nuke.
1635
1694
 
@@ -1637,7 +1696,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1637
1696
 
1638
1697
  - Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
1639
1698
 
1640
- ## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2)
1699
+ ## [0.5.2](https://github.com/cucumber/cucumber-ruby/compare/v0.5.1...v0.5.2) (2009-12-22)
1641
1700
 
1642
1701
  ### New Features
1643
1702
 
@@ -1649,7 +1708,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1649
1708
  - Add #embed back to html formatter (#547 Brandon Faloona)
1650
1709
  - Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
1651
1710
 
1652
- ## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1)
1711
+ ## [0.5.1](https://github.com/cucumber/cucumber-ruby/compare/v0.5.0...v0.5.1) (2009-12-16)
1653
1712
 
1654
1713
  Small bugfix release.
1655
1714
 
@@ -1657,7 +1716,7 @@ Small bugfix release.
1657
1716
 
1658
1717
  - Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
1659
1718
 
1660
- ## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0)
1719
+ ## [0.5.0](https://github.com/cucumber/cucumber-ruby/compare/v0.4.4...v0.5.0) (2009-12-15)
1661
1720
 
1662
1721
  We're bumping to 0.5.0 for this release since all of the Rails code has now moved to a new gem - cucumber-rails.
1663
1722
  Please see History.txt in cucumber-rails for details about what's new on the Rails side.
@@ -1692,7 +1751,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
1692
1751
  - All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
1693
1752
  - --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
1694
1753
 
1695
- ## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4)
1754
+ ## [0.4.4](https://github.com/cucumber/cucumber-ruby/compare/v0.4.3...v0.4.4) (2009-11-13)
1696
1755
 
1697
1756
  What a bad day to make a release, but here goes.
1698
1757
 
@@ -1720,7 +1779,7 @@ What a bad day to make a release, but here goes.
1720
1779
  - $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
1721
1780
  - Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
1722
1781
 
1723
- ## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3)
1782
+ ## [0.4.3](https://github.com/cucumber/cucumber-ruby/compare/v0.4.2...v0.4.3) (2009-10-27)
1724
1783
 
1725
1784
  The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
1726
1785
  now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
@@ -1751,11 +1810,11 @@ As usual there are several small features and bug fixes.
1751
1810
  - JUnit formatter raises a more helpful error when run on a feature with no name. (#493 Matt Wynne)
1752
1811
  - Better Danish translation (Thorbjørn Ravn Andersen)
1753
1812
 
1754
- ## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2)
1813
+ ## [0.4.2](https://github.com/cucumber/cucumber-ruby/compare/v0.4.1...v0.4.2) (2009-10-14)
1755
1814
 
1756
1815
  Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
1757
1816
 
1758
- ## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1)
1817
+ ## [0.4.1](https://github.com/cucumber/cucumber-ruby/compare/v0.4.0...v0.4.1) (2009-10-14)
1759
1818
 
1760
1819
  This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
1761
1820
  making it easier for people to contribute. The README.txt also describes how to get up and running with the
@@ -1786,7 +1845,7 @@ development environment.
1786
1845
  - Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
1787
1846
  - StepDefinitionMethods is gone.
1788
1847
 
1789
- ## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0)
1848
+ ## [0.4.0](https://github.com/cucumber/cucumber-ruby/compare/v0.3.104...v0.4.0) (2009-10-09)
1790
1849
 
1791
1850
  The back to stable release. When we went from 0.3.11 to 0.3.90 we thought we were close to a 0.4.0 release. Then the community
1792
1851
  went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
@@ -1837,7 +1896,7 @@ that will give you more information so you can solve any problems. If not, just
1837
1896
  - Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
1838
1897
  - String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
1839
1898
 
1840
- ## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104)
1899
+ ## [0.3.104](https://github.com/cucumber/cucumber-ruby/compare/v0.3.103...v0.3.104) (2009-09-27)
1841
1900
 
1842
1901
  This release has some minor changes to the command line and formatters. The biggest change is internally, paving
1843
1902
  the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
@@ -1866,7 +1925,7 @@ Groovy, Clojure and Javascript!
1866
1925
  - The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
1867
1926
  - The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
1868
1927
 
1869
- ## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103)
1928
+ ## [0.3.103](https://github.com/cucumber/cucumber-ruby/compare/v0.3.102...v0.3.103) (2009-09-24)
1870
1929
 
1871
1930
  This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
1872
1931
  previous release.
@@ -1887,7 +1946,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
1887
1946
 
1888
1947
  - The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
1889
1948
 
1890
- ## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102)
1949
+ ## [0.3.102](https://github.com/cucumber/cucumber-ruby/compare/v0.3.101...v0.3.102) (2009-09-22)
1891
1950
 
1892
1951
  This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
1893
1952
  Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
@@ -1933,7 +1992,7 @@ your features to your customer for review!
1933
1992
  - Adding webrat steps for asserting content does or does not exist within a particular element
1934
1993
  (using webrat's within method) (Kieran Pilkington)
1935
1994
 
1936
- ## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100)
1995
+ ## [0.3.100](https://github.com/cucumber/cucumber-ruby/compare/v0.3.99...v0.3.100) (2009-09-08)
1937
1996
 
1938
1997
  The JavaZone release!
1939
1998
 
@@ -1947,7 +2006,7 @@ The JavaZone release!
1947
2006
  - Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
1948
2007
  - When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
1949
2008
 
1950
- ## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99)
2009
+ ## [0.3.99](https://github.com/cucumber/cucumber-ruby/compare/v0.3.98...v0.3.99) (2009-09-02)
1951
2010
 
1952
2011
  ### New Features
1953
2012
 
@@ -1957,7 +2016,7 @@ The JavaZone release!
1957
2016
  - New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
1958
2017
  - Cucumber::Cli::Configuration#feature_dirs and #out_stream exposed as public attributes so that they may be used in AfterConfiguration hook (#423 Brent Snook)
1959
2018
 
1960
- ## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98)
2019
+ ## [0.3.98](https://github.com/cucumber/cucumber-ruby/compare/v0.3.97...v0.3.98) (2009-08-25)
1961
2020
 
1962
2021
  Just a small release to help Cuke4Duke, which will be presented at Agile2009
1963
2022
  in 2 days.
@@ -1967,7 +2026,7 @@ in 2 days.
1967
2026
  - Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
1968
2027
  - Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
1969
2028
 
1970
- ## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97)
2029
+ ## [0.3.97](https://github.com/cucumber/cucumber-ruby/compare/v0.3.96...v0.3.97) (2009-08-23)
1971
2030
 
1972
2031
  The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
1973
2032
  with the new language API and maybe knock out some better .NET support.
@@ -1989,7 +2048,7 @@ with the new language API and maybe knock out some better .NET support.
1989
2048
  - Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
1990
2049
  - The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
1991
2050
 
1992
- ## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96)
2051
+ ## [0.3.96](https://github.com/cucumber/cucumber-ruby/compare/v0.3.95...v0.3.96) (2009-08-15)
1993
2052
 
1994
2053
  This release doesn't have any significant new features or bug fixes, but there are big
1995
2054
  internal changes. This release has a new API for plugging in other programming languages.
@@ -2010,7 +2069,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
2010
2069
  - --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
2011
2070
  - junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
2012
2071
 
2013
- ## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95)
2072
+ ## [0.3.95](https://github.com/cucumber/cucumber-ruby/compare/v0.3.94...v0.3.95) (2009-08-13)
2014
2073
 
2015
2074
  This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
2016
2075
  elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
@@ -2040,7 +2099,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
2040
2099
  - element_at('table').to_table should be used instead of table_at('table').to_a. The old way is deprecated but still works. (Aslak Hellesøy)
2041
2100
  - element_at (and the depracated table_at) no longer takes a DOM id, only CSS selectors. Change "my_id" to "#my_id". (Aslak Hellesøy)
2042
2101
 
2043
- ## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94)
2102
+ ## [0.3.94](https://github.com/cucumber/cucumber-ruby/compare/v0.3.93...v0.3.94) (2009-08-06)
2044
2103
 
2045
2104
  Kanban take II.
2046
2105
 
@@ -2070,7 +2129,7 @@ You'll achieve better flow this way.
2070
2129
  - Document builtin formatters with --help. (#406 Aslak Hellesøy)
2071
2130
  - Added support for using regular expressions when mapping table headers. (Peter Williams)
2072
2131
 
2073
- ## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93)
2132
+ ## [0.3.93](https://github.com/cucumber/cucumber-ruby/compare/v0.3.92...v0.3.93) (2009-08-03)
2074
2133
 
2075
2134
  Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
2076
2135
 
@@ -2087,7 +2146,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
2087
2146
  - script/cucumber correctly loads the gem's binary if the plugin isn't installed.
2088
2147
  - Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
2089
2148
 
2090
- ## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92)
2149
+ ## [0.3.92](https://github.com/cucumber/cucumber-ruby/compare/v0.3.91...v0.3.92) (2009-07-29)
2091
2150
 
2092
2151
  This release has some minor improvements to the new Table.diff! functionality. For example,
2093
2152
  if you're using Webrat and you want to compare a feature table with a HTML table containing
@@ -2111,7 +2170,7 @@ links in one of the columns, you can do:
2111
2170
 
2112
2171
  - The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
2113
2172
 
2114
- ## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91)
2173
+ ## [0.3.91](https://github.com/cucumber/cucumber-ruby/compare/v0.3.90...v0.3.91) (2009-07-27)
2115
2174
 
2116
2175
  ### New Features
2117
2176
 
@@ -2120,7 +2179,7 @@ links in one of the columns, you can do:
2120
2179
  - Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
2121
2180
  - Table support for cuke4duke
2122
2181
 
2123
- ## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90)
2182
+ ## [0.3.90](https://github.com/cucumber/cucumber-ruby/compare/v0.3.11...v0.3.90) (2009-07-21)
2124
2183
 
2125
2184
  The Hot summer release
2126
2185
 
@@ -2224,7 +2283,7 @@ This release also has several bugfixes related to --format and Before/After hook
2224
2283
  - The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
2225
2284
  - Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
2226
2285
 
2227
- ## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11)
2286
+ ## [0.3.11](https://github.com/cucumber/cucumber-ruby/compare/v0.3.10...v0.3.11) (2009-06-05)
2228
2287
 
2229
2288
  This release just fixes a tiny bug in the formatter to fix an incompatibility
2230
2289
  with the latest RedMine release. It should have been included in 0.3.10, but
@@ -2234,7 +2293,7 @@ was forgotten.
2234
2293
 
2235
2294
  - Formatter API was broken in 0.3.9 (Roman Chernyatchik)
2236
2295
 
2237
- ## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10)
2296
+ ## [0.3.10](https://github.com/cucumber/cucumber-ruby/compare/v0.3.9...v0.3.10) (2009-06-05)
2238
2297
 
2239
2298
  The Spork Release!
2240
2299
 
@@ -2277,7 +2336,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
2277
2336
 
2278
2337
  - The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
2279
2338
 
2280
- ## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9)
2339
+ ## [0.3.9](https://github.com/cucumber/cucumber-ruby/compare/v0.3.8...v0.3.9) (2009-05-27)
2281
2340
 
2282
2341
  Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
2283
2342
  generator which is fixed in 0.3.9.
@@ -2287,7 +2346,7 @@ generator which is fixed in 0.3.9.
2287
2346
  - Fix broken Rails cucumber generator (Tim Glen)
2288
2347
  - The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
2289
2348
 
2290
- ## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8)
2349
+ ## [0.3.8](https://github.com/cucumber/cucumber-ruby/compare/v0.3.7...v0.3.8) (2009-05-27)
2291
2350
 
2292
2351
  This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
2293
2352
  use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
@@ -2311,7 +2370,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
2311
2370
  - Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
2312
2371
  - The differ= exception is gone (#325, #340 Aslak Hellesøy)
2313
2372
 
2314
- ## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7)
2373
+ ## [0.3.7](https://github.com/cucumber/cucumber-ruby/compare/v0.3.6...v0.3.7) (2009-05-22)
2315
2374
 
2316
2375
  This is the "Help JetBrains RubyMine" release!
2317
2376
 
@@ -2326,7 +2385,7 @@ This is the "Help JetBrains RubyMine" release!
2326
2385
  - 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
2327
2386
  - CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
2328
2387
 
2329
- ## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6)
2388
+ ## [0.3.6](https://github.com/cucumber/cucumber-ruby/compare/v0.3.5...v0.3.6) (2009-05-20)
2330
2389
 
2331
2390
  Kanban! With this release you can tag features or scenarios that are work in progress
2332
2391
  with a tag and use the new --wip switch.
@@ -2346,7 +2405,7 @@ Another handy feature in this release is that you can package your own formatter
2346
2405
  - Gracefully handle exceptions in After block (#330 Matt Wynne)
2347
2406
  - Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
2348
2407
 
2349
- ## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5)
2408
+ ## [0.3.5](https://github.com/cucumber/cucumber-ruby/compare/v0.3.4...v0.3.5) (2009-05-15)
2350
2409
 
2351
2410
  Let's make a new release today because two annoying bugs are fixed.
2352
2411
 
@@ -2354,7 +2413,7 @@ Let's make a new release today because two annoying bugs are fixed.
2354
2413
 
2355
2414
  - Allow feature element names to contain Gherkin keywords as long as they are not the first word on a newline (#319, #307 Joseph Wilk)
2356
2415
 
2357
- ## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4)
2416
+ ## [0.3.4](https://github.com/cucumber/cucumber-ruby/compare/v0.3.3...v0.3.4) (2009-05-14)
2358
2417
 
2359
2418
  A couple of great new features in this release. Running with Rake is faster than before,
2360
2419
  and there is a brand new JUnit formatter - great for Continuous Integration reports!
@@ -2401,7 +2460,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
2401
2460
  unless explicitly told to fork a new interpreter. This is to increase speed. You can
2402
2461
  force a new interpreter by setting fork=true or rcov=true in the task.
2403
2462
 
2404
- ## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3)
2463
+ ## [0.3.3](https://github.com/cucumber/cucumber-ruby/compare/v0.3.2...v0.3.3) (2009-05-10)
2405
2464
 
2406
2465
  Minor bugfix release, made specially for EuRuKo!
2407
2466
 
@@ -2415,7 +2474,7 @@ Minor bugfix release, made specially for EuRuKo!
2415
2474
 
2416
2475
  - New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
2417
2476
 
2418
- ## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2)
2477
+ ## [0.3.2](https://github.com/cucumber/cucumber-ruby/compare/v0.3.1...v0.3.2) (2009-05-03)
2419
2478
 
2420
2479
  This release has some minor bug fixes and new features.
2421
2480
  Nothing major, but we need a release for RailsConf'09 in Las Vegas!
@@ -2433,7 +2492,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
2433
2492
  - Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
2434
2493
  - Added support for Examples selection when using --name. (#295 Joseph Wilk)
2435
2494
 
2436
- ## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1)
2495
+ ## [0.3.1](https://github.com/cucumber/cucumber-ruby/compare/v0.3.0...v0.3.1) (2009-04-26)
2437
2496
 
2438
2497
  This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
2439
2498
  now supports 32(!!) languages.
@@ -2461,7 +2520,7 @@ now supports 32(!!) languages.
2461
2520
 
2462
2521
  - --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
2463
2522
 
2464
- ## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0)
2523
+ ## [0.3.0](https://github.com/cucumber/cucumber-ruby/compare/v0.2.3...v0.3.0) (2009-04-14)
2465
2524
 
2466
2525
  This release has some minor changes to the APIs, but big enough that a new major release is in order.
2467
2526
  The biggest change is the new semantics of the #World method. Previously you would call this method
@@ -2519,7 +2578,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
2519
2578
  - Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
2520
2579
  - \#visit_py_string no longer takes a status argument.
2521
2580
 
2522
- ## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3)
2581
+ ## [0.2.3](https://github.com/cucumber/cucumber-ruby/compare/v0.2.2...v0.2.3) (2009-03-30)
2523
2582
 
2524
2583
  This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
2525
2584
  in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
@@ -2541,7 +2600,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
2541
2600
  - Fixed step name after step keyword without space (#265 Aslak Hellesøy)
2542
2601
  - Backtrace is back in HTML reports (Aslak Hellesøy)
2543
2602
 
2544
- ## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2)
2603
+ ## [0.2.2](https://github.com/cucumber/cucumber-ruby/compare/v0.2.1...v0.2.2) (2009-03-25)
2545
2604
 
2546
2605
  This release includes some minor changes to make Cucumber work with pure Java. Cucumber
2547
2606
  has already worked with Java for a while (using JRuby and step definitions in Ruby),
@@ -2550,7 +2609,7 @@ but now you can write step definitions in pure Java!
2550
2609
  Check out the Cucumber Java project for more details:
2551
2610
  http://github.com/aslakhellesoy/cucumber_java/tree/master
2552
2611
 
2553
- ## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1)
2612
+ ## [0.2.1](https://github.com/cucumber/cucumber-ruby/compare/v0.2.0...v0.2.1) (2009-03-25)
2554
2613
 
2555
2614
  This release fixes a few minor bugs and adds a couple of new features.
2556
2615
 
@@ -2572,7 +2631,7 @@ This release fixes a few minor bugs and adds a couple of new features.
2572
2631
 
2573
2632
  - -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
2574
2633
 
2575
- ## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0)
2634
+ ## [0.2.0](https://github.com/cucumber/cucumber-ruby/compare/v0.1.16...v0.2.0) (2009-03-18)
2576
2635
 
2577
2636
  This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
2578
2637
  The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
@@ -2656,7 +2715,7 @@ for multiline arguments are some of the highlights.
2656
2715
  - Pure Ruby features are no longer supported.
2657
2716
  - Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
2658
2717
 
2659
- ## 0.1.16.4
2718
+ ## 0.1.16.4 (2009-01-22)
2660
2719
 
2661
2720
  Bugfix release.
2662
2721
 
@@ -2682,7 +2741,7 @@ to this:
2682
2741
  - Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
2683
2742
  - Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
2684
2743
 
2685
- ## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16)
2744
+ ## [0.1.16](https://github.com/cucumber/cucumber-ruby/compare/v0.1.15...v0.1.16) (2009-01-18)
2686
2745
 
2687
2746
  This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
2688
2747
  upgrade both Cucumber and Webrat gems.
@@ -2700,7 +2759,7 @@ upgrade both Cucumber and Webrat gems.
2700
2759
 
2701
2760
  ### Removed features
2702
2761
 
2703
- ## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15)
2762
+ ## [0.1.15](https://github.com/cucumber/cucumber-ruby/compare/v0.1.14...v0.1.15) (2009-01-07)
2704
2763
 
2705
2764
  Bugfix release
2706
2765
 
@@ -2715,7 +2774,7 @@ Bugfix release
2715
2774
  - Better quoting of Scenario names in Autotest (Peter Jaros)
2716
2775
  - Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
2717
2776
 
2718
- ## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14)
2777
+ ## [0.1.14](https://github.com/cucumber/cucumber-ruby/compare/v0.1.13...v0.1.14) (2009-01-04)
2719
2778
 
2720
2779
  This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
2721
2780
  with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
@@ -2735,7 +2794,7 @@ a couple of minor bug fixes and polishing.
2735
2794
 
2736
2795
  - The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
2737
2796
 
2738
- ## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13)
2797
+ ## [0.1.13](https://github.com/cucumber/cucumber-ruby/compare/v0.1.12...v0.1.13) (2008-12-20)
2739
2798
 
2740
2799
  It's time for some new features again. Output is now much better since you can use diffing, tweak
2741
2800
  the output colours and get the full --backtrace if you want. Managing your support/\* files became
@@ -2772,7 +2831,7 @@ Enjoy!
2772
2831
 
2773
2832
  ### Removed features
2774
2833
 
2775
- ## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12)
2834
+ ## [0.1.12](https://github.com/cucumber/cucumber-ruby/compare/v0.1.11...v0.1.12) (2008-12-04)
2776
2835
 
2777
2836
  This is the "getting serious with IronRuby release" - largely based on
2778
2837
  "Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
@@ -2790,7 +2849,7 @@ blog entry.
2790
2849
 
2791
2850
  None
2792
2851
 
2793
- ## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11)
2852
+ ## [0.1.11](https://github.com/cucumber/cucumber-ruby/compare/v0.1.10...v0.1.11) (2008-12-02)
2794
2853
 
2795
2854
  Bugfix release with a couple of minor additional features to the command line options.
2796
2855
 
@@ -2811,7 +2870,7 @@ Bugfix release with a couple of minor additional features to the command line op
2811
2870
 
2812
2871
  - The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
2813
2872
 
2814
- ## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10)
2873
+ ## [0.1.10](https://github.com/cucumber/cucumber-ruby/compare/v0.1.9...v0.1.10) (2008-11-25)
2815
2874
 
2816
2875
  This release mostly has smaller bugfixes. The most significant new feature is how
2817
2876
  line numbers are specified. You can now run multiple features at specific lines numbers like this:
@@ -2844,7 +2903,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
2844
2903
  - Step definition without a block being treated as pending (#64 Joseph Wilk)
2845
2904
  - The --line option has been removed. Use the new file.feature:line format instead.
2846
2905
 
2847
- ## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9)
2906
+ ## [0.1.9](https://github.com/cucumber/cucumber-ruby/compare/v0.1.8...v0.1.9) (2008-11-12)
2848
2907
 
2849
2908
  With this release Cucumber supports 19 (!) natural languages:
2850
2909
 
@@ -2928,7 +2987,7 @@ spaces removed too.
2928
2987
 
2929
2988
  ### Removed features
2930
2989
 
2931
- ## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8)
2990
+ ## [0.1.8](https://github.com/cucumber/cucumber-ruby/compare/v0.1.7...v0.1.8) (2008-10-18)
2932
2991
 
2933
2992
  This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
2934
2993
  In previous releases it has been possible to use tables to define "more examples" of a scenario in
@@ -3012,7 +3071,7 @@ The step definitions for such multiline steps must define an extra block argumen
3012
3071
 
3013
3072
  - Added new --out option to make it easier to specify output from Rake and cucumber.yml
3014
3073
 
3015
- ## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7)
3074
+ ## [0.1.7](https://github.com/cucumber/cucumber-ruby/compare/v0.1.6...v0.1.7) (2008-10-05)
3016
3075
 
3017
3076
  This release fixes a few bugs and adds some new features. The most notable features are:
3018
3077
 
@@ -3067,6 +3126,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
3067
3126
  - Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
3068
3127
  - Added more Webrat steps (#25, Tim Glen)
3069
3128
 
3070
- ## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6)
3129
+ ## [0.1.6](https://github.com/cucumber/cucumber-ruby/compare/f3292f4023a707099d02602b2bd6c4ca3cec6820...v0.1.6) (2008-10-01)
3071
3130
 
3072
3131
  First gem release!