cucumber 6.1.0 → 7.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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/v6.1.0...main)
13
+ ## [Unreleased](https://github.com/cucumber/cucumber-ruby/compare/v7.1.0...main)
14
14
 
15
15
  ### Added
16
16
 
@@ -22,15 +22,105 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
22
22
 
23
23
  ### Security fixes
24
24
 
25
- ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.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)
85
+
86
+ ### Fixed
87
+
88
+ - Cucumber terminating with `negative argument` ArgumentError
89
+ ([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
90
+ [1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
91
+ [Serghei Moret](https://github.com/JoeSSS))
92
+ - Fixed reports banner to point to [new docs](https://cucumber.io/docs/cucumber/environment-variables/) about environment variables
93
+
94
+ ### Changed
95
+
96
+ - Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.
97
+
98
+ This brings some breaking changes in `Cucumber::Messages`.
99
+ ([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
100
+ [aurelien-reeves](https://github.com/aurelien-reeves))
101
+
102
+ This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
103
+ ([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
104
+ [luke-hill](https://github.com/luke-hill))
105
+
106
+ ### Removed
107
+
108
+ - On Windows, auto-detection of ANSICON has been removed - Windows now properly
109
+ supports ANSI colors in the terminal. In case of issues on older versions of
110
+ Windows, execute cucumber with `--no-color`, or install
111
+ [ANSICON](https://github.com/adoxa/ansicon/) globally.
112
+ ([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
113
+ [yosukei3108](https://github.com/yosukei3108))
114
+
115
+ ## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0) (2021-05-18)
26
116
 
27
117
  ### Fixed
28
118
 
29
119
  - `--dry-run` now supports `message` based-formatters
30
120
  ([1540](https://github.com/cucumber/cucumber-ruby/pull/1540)
31
- [1496](https://github.com/cucumber/cucumber-ruby/issues/1496)
32
- [1488](https://github.com/cucumber/cucumber-ruby/issues/1488)
33
- [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))
34
124
  - Step definitions now uses object instances created in the ParameterType
35
125
  ([1538](https://github.com/cucumber/cucumber-ruby/pull/1538)
36
126
  [1532](https://github.com/cucumber/cucumber-ruby/issues/1532)
@@ -54,7 +144,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
54
144
 
55
145
  - Updated `cucumber-core` ~> 9.0.1
56
146
 
57
- ## [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)
58
148
 
59
149
  ### Added
60
150
 
@@ -84,7 +174,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
84
174
  ([#1523](https://github.com/cucumber/cucumber-ruby/pull/1523)
85
175
  [aurelien-reeves](https://github.com/aurelien-reeves))
86
176
 
87
- ## [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)
88
178
 
89
179
  ### Added
90
180
 
@@ -102,31 +192,31 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
102
192
  [#1500](https://github.com/cucumber/cucumber-ruby/pull/1500)
103
193
  [aurelien-reeves](https://github.com/aurelien-reeves))
104
194
 
105
- ## [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)
106
196
 
107
197
  ### Changed
108
198
 
109
199
  - `--publish` uses the response provided by the server as the banner [#1472](https://github.com/cucumber/cucumber-ruby/issues/1472)
110
200
 
111
- ## [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)
112
202
 
113
203
  ### Fixed
114
204
 
115
205
  - The `CUCUMBER_PUBLISH_TOKEN` now sets the correct HTTP header, following a fix in the curl option parser.
116
206
 
117
- ## [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)
118
208
 
119
209
  ### Fixed
120
210
 
121
211
  - Do not send headers after following redirection [#1475](https://github.com/cucumber/cucumber-ruby/pull/1475)
122
212
 
123
- ## [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)
124
214
 
125
215
  ### Security fixes
126
216
 
127
217
  - Update `cucumber-create-meta` to 2.0.2
128
218
 
129
- ## [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)
130
220
 
131
221
  ### Added
132
222
 
@@ -145,7 +235,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
145
235
 
146
236
  - Display banner on stderr when publishing reports [#1462](https://github.com/cucumber/cucumber-ruby/issues/1462)
147
237
 
148
- ## [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)
149
239
 
150
240
  ### Added
151
241
 
@@ -176,7 +266,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
176
266
  - Add filtering capabilities [#1444](https://github.com/cucumber/cucumber-ruby/issues/1444)
177
267
  - Fix Interceptor that was raising exception when calling `puts` on the wrapped stream ([#1445](https://github.com/cucumber/cucumber-ruby/issues/1445))
178
268
 
179
- ## [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)
180
270
 
181
271
  ### Changed
182
272
 
@@ -195,13 +285,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
195
285
 
196
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)
197
287
 
198
- ## [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)
199
289
 
200
290
  ### Fixed
201
291
 
202
292
  - force reference to `diff-lcs` to 1.3 as 1.4 introduced breaking changes.
203
293
 
204
- ## [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)
205
295
 
206
296
  ### Changed
207
297
 
@@ -211,7 +301,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
211
301
 
212
302
  - Display snippet when using undefined parameter type [#1411](https://github.com/cucumber/cucumber-ruby/issues/1411)
213
303
 
214
- ## [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)
215
305
 
216
306
  ### Changed
217
307
 
@@ -239,7 +329,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
239
329
  - use `PUT` method by default
240
330
  - use a cURL like options (for example: `cucumber --out 'http://example.com -X POST -H Content-Type: json`)
241
331
 
242
- ## [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)
243
333
 
244
334
  ### Added
245
335
 
@@ -251,7 +341,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
251
341
  Other `http-` prefixed query parameters will be converted to request headers
252
342
  (with the `http-` prefix stripped off).
253
343
 
254
- ## [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)
255
345
 
256
346
  ### Added
257
347
 
@@ -265,13 +355,13 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
265
355
  - `puts` in step definitions in favor of `log` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
266
356
  - `embed` in step definitions in favor of `attach` ([cucumber#897](https://github.com/cucumber/cucumber/issues/897))
267
357
 
268
- ## [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)
269
359
 
270
360
  ### Changed
271
361
 
272
362
  - Update to cucumber-wire 1.1.
273
363
 
274
- ## [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)
275
365
 
276
366
  ### Added
277
367
 
@@ -489,7 +579,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
489
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))
490
580
  - Use past tense in event names (`xStarting` -> `xStarted`) ([#1166](https://github.com/cucumber/cucumber-ruby/issues/1166) @brasmusson).
491
581
 
492
- ## [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)
493
583
 
494
584
  ### Breaking changes
495
585
 
@@ -565,7 +655,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
565
655
  - Travis: use jruby-9.1.10.0 ([#1114](https://github.com/cucumber/cucumber-ruby/pull/1114) @olleolleolle)
566
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)
567
657
 
568
- ## [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)
569
659
 
570
660
  ### New Features
571
661
 
@@ -581,7 +671,7 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
581
671
  - Allow Rake task to accept multiple profiles. ([#907](https://github.com/cucumber/cucumber-ruby/pull/907) @jasonkarns)
582
672
  - Let the JUnit formatter handle running test cases for different features interweaved ([#952](https://github.com/cucumber/cucumber-ruby/issues/952) @brasmusson)
583
673
 
584
- ## [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)
585
675
 
586
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.
587
677
 
@@ -590,15 +680,15 @@ Added a message pointing users to [The Great Cucumber and BDD Census of 2016](ht
590
680
  - Let the JSON formatter include data tables in the JSON file ([#948](https://github.com/cucumber/cucumber-ruby/issues/948) @brasmusson)
591
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)
592
682
 
593
- ## [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)
594
684
 
595
685
  Brought the event bus code back into Cucumber to avoid https://github.com/fedux-org/event-bus/issues/6
596
686
 
597
- ## [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)
598
688
 
599
689
  Better deprecation warnings to help fix https://github.com/cucumber/cucumber-ruby/issues/942
600
690
 
601
- ## [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)
602
692
 
603
693
  ### New Features
604
694
 
@@ -608,7 +698,7 @@ Better deprecation warnings to help fix https://github.com/cucumber/cucumber-rub
608
698
 
609
699
  ### Refactoring
610
700
 
611
- ## [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)
612
702
 
613
703
  Although this release is only bugfixes and refactorings, the extraction of the wire protocol is quite a significant change and
614
704
  could cause breaking changes for users of undocumented APIs. Hence the minor version bump.
@@ -625,7 +715,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
625
715
  - Remove wire protocol to plugin ([#878](https://github.com/cucumber/cucumber-ruby/pull/878) @mattwynne @tooky)
626
716
  - Remove event bus to separate gem ([#933](https://github.com/cucumber/cucumber-ruby/pull/933) @dg-ratiodata)
627
717
 
628
- ## [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)
629
719
 
630
720
  ### New Features
631
721
 
@@ -645,14 +735,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
645
735
  - Move behaviour from `Cucumber::Cli::Configuration` to `Cucumber::Configuration` (@tooky, @mattwynne)
646
736
  - Integrate Gherkin3 parser ([884](https://github.com/cucumber/cucumber-ruby/pull/884) (@brasmusson)
647
737
 
648
- ## [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)
649
739
 
650
740
  ### Bugfixes
651
741
 
652
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).
653
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).
654
744
 
655
- ## [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)
656
746
 
657
747
  ### New Features
658
748
 
@@ -679,7 +769,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
679
769
  - Rewrite the JUnit Formatter to the new formatter API ([855](https://github.com/cucumber/cucumber-ruby/pull/855) @brasmusson)
680
770
  - Rewrite the Progress, Usage, Stepdefs formatters to the new formatter API ([859](https://github.com/cucumber/cucumber-ruby/pull/859) @brasmusson)
681
771
 
682
- ## [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)
683
773
 
684
774
  ### New Features
685
775
 
@@ -691,7 +781,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
691
781
  - Ensure After Hooks execute in reverse order (@tooky)
692
782
  - Make console output with embedded cr/lf look correct. ([820](https://github.com/cucumber/cucumber-ruby/pull/820) @SteveDonie)
693
783
 
694
- ## [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)
695
785
 
696
786
  ### New Features
697
787
 
@@ -708,7 +798,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
708
798
  - JUnit expand option ([808](https://github.com/cucumber/cucumber-ruby/pull/808) @richarda @brasmusson)
709
799
  - Around hooks not executing in correct world context ([807](https://github.com/cucumber/cucumber-ruby/pull/807) @tooky)
710
800
 
711
- ## [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)
712
802
 
713
803
  ### Features
714
804
 
@@ -722,19 +812,19 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
722
812
  - Sort scenarios by location ([789](https://github.com/cucumber/cucumber-ruby/issues/789) @mattwynne)
723
813
  - Remove keyword from name property of test case object yielded to hooks ([768](https://github.com/cucumber/cucumber-ruby/issues/768) @richarda, @akostadinov)
724
814
 
725
- ## [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)
726
816
 
727
817
  ### Bugfixes
728
818
 
729
819
  - MultilineArgument::DataTable#diff will correctly compare to an Array (@tooky)
730
820
 
731
- ## [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)
732
822
 
733
823
  ### Bugfixes
734
824
 
735
825
  - World#table no longer creates invalid table objects when using an Array (@tooky, @mattwynne)
736
826
 
737
- ## [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)
738
828
 
739
829
  ### Removed Features
740
830
 
@@ -753,11 +843,11 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
753
843
  - Using file:line CLI to select scenarios was running same scenario multiple times ([786](https://github.com/cucumber/cucumber-ruby/pull/786) @jdks)
754
844
  - Allow spaces in filenames for rerun formatter ([793](https://github.com/cucumber/cucumber-ruby/pull/793) @callahat)
755
845
 
756
- ## [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)
757
847
 
758
848
  - Depend on the correct version of core (@tooky)
759
849
 
760
- ## [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)
761
851
 
762
852
  ### New Features
763
853
 
@@ -773,7 +863,7 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
773
863
 
774
864
  - Re-write rerun formatter against new formatter API
775
865
 
776
- ## [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)
777
867
 
778
868
  ### Removed Features
779
869
 
@@ -793,14 +883,14 @@ could cause breaking changes for users of undocumented APIs. Hence the minor ver
793
883
  - Add back support for the DataTable API ([729](https://github.com/cucumber/cucumber-ruby/pull/729) @mattwynne and @tooky)
794
884
  - Fix Windows support loading files properly ([739](https://github.com/cucumber/cucumber-ruby/issues/739) @os97673)
795
885
 
796
- ## [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)
797
887
 
798
888
  ### Bugfixes
799
889
 
800
890
  - Better reporting of exceptions in Before / After hooks ([723](https://github.com/cucumber/cucumber-ruby/pull/723) @mattwynne)
801
891
  - Add `#source_tag_names` method to `TestCase` object passed to hooks (@mattwynne)
802
892
 
803
- ## [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)
804
894
 
805
895
  Version 2.0 contains a major internal redesign, extracting the core logic of
806
896
  parsing and executing tests into a [separate gem](https://github.com/cucumber/cucumber-ruby-ruby-core).
@@ -835,53 +925,53 @@ all.
835
925
 
836
926
  - Greek examples added ([497](https://github.com/cucumber/cucumber-ruby/issues/497) @rousisk)
837
927
 
838
- ## [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)
839
929
 
840
930
  - Pass output from the step definition on to the JSON formatter ([701](https://github.com/cucumber/cucumber-ruby/pull/701) @brasmusson)
841
931
  - Add RSpec 3 test double support ([689](https://github.com/cucumber/cucumber-ruby/pull/689) @cyphactor)
842
932
  - Fix bug with rerun formatter and `--expand` option ([710](https://github.com/cucumber/cucumber-ruby/pull/710) @brasmusson)
843
933
 
844
- ## [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)
845
935
 
846
936
  - Fixed intermittent ConcurrencyError seen in JRuby
847
937
  ([671](https://github.com/cucumber/cucumber-ruby/issues/670) @cbusbey)
848
938
 
849
- ## [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)
850
940
 
851
941
  - Rerun formatter includes all scenarios when the background fails
852
942
  ([660](https://github.com/cucumber/cucumber-ruby/issues/660),
853
943
  [661](https://github.com/cucumber/cucumber-ruby/pull/661) @brasmusson)
854
944
 
855
- ## [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)
856
946
 
857
947
  - Rerun formatter includes all scenarios when the background fails
858
948
  ([654](https://github.com/cucumber/cucumber-ruby/pull/654) @brasmusson)
859
949
 
860
- ## [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)
861
951
 
862
952
  - Use MultiTest to handle assertions library selection (@tooky)
863
953
  - Adds full support for rails 4.1 / Minitest
864
954
 
865
- ## [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)
866
956
 
867
957
  - Add Ruby 2.1 Support ([#644](https://github.com/cucumber/cucumber-ruby/pull/644) @tooky, @chrismdp)
868
958
 
869
- ## [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)
870
960
 
871
961
  - Fixed "nil:NilClass (NoMethodError)" problem for auto-formatting ([599](https://github.com/cucumber/cucumber-ruby/pull/599) @jmcaffee)
872
962
 
873
- ## [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)
874
964
 
875
965
  - Disable minitest autorun after loading support files (@tooky)
876
966
  - Add `Ast::Table#map_column` for non-mutating column mapping (@tooky)
877
967
  - Remove deprecation warnings on `Ast::Table` (@tooky)
878
968
  - Fixed ArgumentError for NoStepMatch#format_args ([587](https://github.com/cucumber/cucumber-ruby/pull/587) @jshraibman-mdsol)
879
969
 
880
- ## [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)
881
971
 
882
972
  - Make the MultiJson dependency less restrictive (@tooky)
883
973
 
884
- ## [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)
885
975
 
886
976
  - Fixed incorrect html formatter behaviour when background step fails
887
977
  ([520](https://github.com/cucumber/cucumber-ruby/issues/520),
@@ -900,20 +990,20 @@ all.
900
990
  - AST::Table#map_headers doesn't use #map_headers! anymore
901
991
  ([505](https://github.com/cucumber/cucumber-ruby/issues/528) @adbatista)
902
992
 
903
- ## [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)
904
994
 
905
995
  - Html formatter fixed to not mark passes scenarios with tables as pending
906
996
  ([493](https://github.com/cucumber/cucumber-ruby/issues/493) Oleg Sukhodolsky)
907
997
 
908
- ## [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)
909
999
 
910
1000
  - Fix Rails 4 Minitest autorun problems. ([501](https://github.com/cucumber/cucumber-ruby/issues/501) @mattwynne)
911
1001
 
912
- ## [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)
913
1003
 
914
1004
  - JUnit formatter fixed to report skipped scenarios correctly ([496](https://github.com/cucumber/cucumber-ruby/issues/496) @ambirag)
915
1005
 
916
- ## [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)
917
1007
 
918
1008
  - Fix compatability with MiniTest 5.0 ([#456](https://github.com/cucumber/cucumber-ruby/issues/456) Matt Wynne)
919
1009
  - Warn that Spork support is broken (Steve Tooke)
@@ -921,20 +1011,20 @@ all.
921
1011
  ([#492](https://github.com/cucumber/cucumber-ruby/issues/492) Matt Wynne)
922
1012
  - Use new Rubygems API to look for bundler ([#448](https://github.com/cucumber/cucumber-ruby/issues/448) Matt Wynne)
923
1013
 
924
- ## [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)
925
1015
 
926
1016
  ### Bugfixes
927
1017
 
928
1018
  - Fixed ugly NoMethodError when a Scenario Outline has no Examples
929
1019
  ([#438](https://github.com/cucumber/cucumber-ruby/issues/438) Steve Tooke)
930
1020
 
931
- ## [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)
932
1022
 
933
1023
  ### Bugfixes
934
1024
 
935
1025
  - Fixed typo which breaks unicode.rb on Windows (Oleg Sukhodolsky)
936
1026
 
937
- ## [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)
938
1028
 
939
1029
  ### New Features
940
1030
 
@@ -971,23 +1061,23 @@ all.
971
1061
  - Better delegation to IO in Cucumber::Formatter::Interceptor::Pipe
972
1062
  ([#312](https://github.com/cucumber/cucumber-ruby/issues/312) Oleg Sukhodolsky)
973
1063
 
974
- ## [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)
975
1065
 
976
1066
  - Upgrade Gherkin version to remove warnings when running on JRuby. ([#393](https://github.com/cucumber/cucumber-ruby/issues/393) Oleg Sukhodolsky)
977
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)
978
1068
 
979
- ## 1.2.4
1069
+ ## 1.2.4 (2013-04-07)
980
1070
 
981
1071
  Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
982
1072
 
983
- ## [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)
984
1074
 
985
1075
  ### Bugfixes
986
1076
 
987
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)
988
1078
  - Fix embedding images in json ([#315](https://github.com/cucumber/cucumber-ruby/issues/315) Oleg Sukhodolsky)
989
1079
 
990
- ## [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)
991
1081
 
992
1082
  ### New Features
993
1083
 
@@ -1008,13 +1098,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1008
1098
  - Fix exception in Html formatter with --expand mode and undefined steps ([#336](https://github.com/cucumber/cucumber-ruby/issues/336) Roberto Decurnex)
1009
1099
  - Fix Table.diff! problem with :surplus_row => false and interleaved surplus rows ([#220](https://github.com/cucumber/cucumber-ruby/issues/220))
1010
1100
 
1011
- ## [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)
1012
1102
 
1013
1103
  ### New Features
1014
1104
 
1015
1105
  - Updated to gherkin 2.11.0. (Aslak Hellesøy)
1016
1106
 
1017
- ## [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)
1018
1108
 
1019
1109
  ### Bugfixes
1020
1110
 
@@ -1033,13 +1123,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1033
1123
  - JUnit formatter, classname contains only the feature's name ([#193](https://github.com/cucumber/cucumber-ruby/issues/193) @litvinok)
1034
1124
  - Include the output $stderr and $stdout in JUnit formatted XML ([#259](https://github.com/cucumber/cucumber-ruby/issues/259) R. Tyler Croy)
1035
1125
 
1036
- ## [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)
1037
1127
 
1038
1128
  ### Bugfixes
1039
1129
 
1040
1130
  - Removed deprecation warning for `source_tag_names`. It's not deprecated anymore. (Aslak Hellesøy)
1041
1131
 
1042
- ## [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)
1043
1133
 
1044
1134
  ### Bugfixes
1045
1135
 
@@ -1049,13 +1139,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1049
1139
 
1050
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)
1051
1141
 
1052
- ## [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)
1053
1143
 
1054
1144
  ### Bugfixes
1055
1145
 
1056
1146
  - Finish off backwards compatability fix for Capybara ([#229](https://github.com/cucumber/cucumber-ruby/pull/229) Cezary Baginski)
1057
1147
 
1058
- ## [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)
1059
1149
 
1060
1150
  ### New features
1061
1151
 
@@ -1068,7 +1158,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1068
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,
1069
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)
1070
1160
 
1071
- ## [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)
1072
1162
 
1073
1163
  ### New Features
1074
1164
 
@@ -1078,13 +1168,13 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1078
1168
 
1079
1169
  - Background fails, but build succeeds ([#205](https://github.com/cucumber/cucumber-ruby/issues/205) tcwitte)
1080
1170
 
1081
- ## [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)
1082
1172
 
1083
1173
  ### New Features
1084
1174
 
1085
1175
  - Upgrade to Gherkin 2.7.1 (Aslak Hellesøy)
1086
1176
 
1087
- ## [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)
1088
1178
 
1089
1179
  ### New Features
1090
1180
 
@@ -1098,7 +1188,7 @@ Yanked. See ([#428](https://github.com/cucumber/cucumber-ruby/issues/428)).
1098
1188
  - Retry when feature_element returns failed ([#172](https://github.com/cucumber/cucumber-ruby/pull/172) Charles Finkel)
1099
1189
  - Rerun formatter output does not include failing scenario outline examples ([#57](https://github.com/cucumber/cucumber-ruby/issues/57) Jan Brauer)
1100
1190
 
1101
- ## [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)
1102
1192
 
1103
1193
  ### Changed features
1104
1194
 
@@ -1119,25 +1209,25 @@ New format:
1119
1209
 
1120
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.
1121
1211
 
1122
- ## [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)
1123
1213
 
1124
1214
  ### Changed features
1125
1215
 
1126
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)
1127
1217
 
1128
- ## [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)
1129
1219
 
1130
1220
  ### Bugfixes
1131
1221
 
1132
1222
  - Work around rubygems/yaml utter retardedness ([#136](https://github.com/cucumber/cucumber-ruby/issues/136) Aslak Hellesøy)
1133
1223
 
1134
- ## [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)
1135
1225
 
1136
1226
  ### Bugfixes
1137
1227
 
1138
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)
1139
1229
 
1140
- ## [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)
1141
1231
 
1142
1232
  ### Bugfixes
1143
1233
 
@@ -1147,7 +1237,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1147
1237
  - Patched unmatched message in HTML formatter. (Nikita)
1148
1238
  - Overriding a method that causes a NoMethodError when a Before hook is called on a feature run that has no scenarios. (ccthiel)
1149
1239
 
1150
- ## [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)
1151
1241
 
1152
1242
  ### Bugfixes
1153
1243
 
@@ -1157,7 +1247,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1157
1247
 
1158
1248
  - DocStrings now have a content_type ([#132](https://github.com/cucumber/cucumber-ruby/issues/132) Matt Wynne)
1159
1249
 
1160
- ## [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)
1161
1251
 
1162
1252
  ### Bugfixes
1163
1253
 
@@ -1171,7 +1261,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1171
1261
 
1172
1262
  - --no-source also excludes location from the summary. (Aslak Hellesøy)
1173
1263
 
1174
- ## [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)
1175
1265
 
1176
1266
  ### Bugfixes
1177
1267
 
@@ -1185,7 +1275,7 @@ Also see [Gherkin 2.6.0 History](https://github.com/cucumber/cucumber/blob/maste
1185
1275
 
1186
1276
  - If the CUCUMBER_TRUNCATE_OUTPUT environment variable is set, lines will be truncated. Used by the Cucumber book. (Aslak Hellesøy)
1187
1277
 
1188
- ## [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)
1189
1279
 
1190
1280
  Yipeeeeeeeee!
1191
1281
 
@@ -1195,7 +1285,7 @@ Yipeeeeeeeee!
1195
1285
  - Rake task exits with an error if rcov is true and we're on Ruby 1.9.x (Aslak Hellesøy)
1196
1286
  - Started implementation of cucumber-features (Mike Sassak, Julien Biezemans, Aslak Hellesøy)
1197
1287
 
1198
- ## [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)
1199
1289
 
1200
1290
  ### New Features
1201
1291
 
@@ -1205,7 +1295,7 @@ Yipeeeeeeeee!
1205
1295
 
1206
1296
  - Fixed a regression in the HTML formatter's #embed implementation (#77 Aslak Hellesøy)
1207
1297
 
1208
- ## [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)
1209
1299
 
1210
1300
  (0.10.4 was forgotten!)
1211
1301
 
@@ -1223,7 +1313,7 @@ Yipeeeeeeeee!
1223
1313
  - Fix for Gem.available? deprecation warning (#75 Jake Benilov)
1224
1314
  - Update URLs to reflect Cucumber's new location on Github (Jake Benilov)
1225
1315
 
1226
- ## [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)
1227
1317
 
1228
1318
  ### New Features
1229
1319
 
@@ -1233,13 +1323,13 @@ Yipeeeeeeeee!
1233
1323
  - Fix Table#rows cell ordering in ruby 1.8. (#47_github Brian Dunn)
1234
1324
  - JUnit Formatter: record skipped/pending/undefined scenario results (#655 meeee)
1235
1325
 
1236
- ## [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)
1237
1327
 
1238
1328
  ### Bugfixes
1239
1329
 
1240
1330
  - Neuter both MiniTest::Unit and Test::Unit's overzealous test runners. (Aslak Hellesøy)
1241
1331
 
1242
- ## [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)
1243
1333
 
1244
1334
  ### New Features
1245
1335
 
@@ -1261,7 +1351,7 @@ Yipeeeeeeeee!
1261
1351
  - Features files are sorted before they are executed, giving consistent results across different OSes (Guewen Baconnier)
1262
1352
  - Remove duplicate lines in backtraces in the HTML report (Jari Bakken)
1263
1353
 
1264
- ## [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)
1265
1355
 
1266
1356
  We're bumping the minor number in this release because there are some incompatible changes in the JSON support.
1267
1357
  This should not affect users. The major new feature in this release is ANSICON support for Windows users.
@@ -1280,7 +1370,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1280
1370
 
1281
1371
  - JSON output now contains optional "match", "result" and "embeddings" elements underneath each step. (Aslak Hellesøy)
1282
1372
 
1283
- ## [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)
1284
1374
 
1285
1375
  ### Bugfixes
1286
1376
 
@@ -1290,7 +1380,7 @@ This should not affect users. The major new feature in this release is ANSICON s
1290
1380
  - Cucumber 0.9.3 prevents Test::Unit from running (#677 Aslak Hellesøy)
1291
1381
  - Performance degradation when running feature files with over 1000 steps (#675 Dimitri Geshef)
1292
1382
 
1293
- ## [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)
1294
1384
 
1295
1385
  ### Bugfixes
1296
1386
 
@@ -1299,19 +1389,19 @@ This should not affect users. The major new feature in this release is ANSICON s
1299
1389
  - Prevent MiniTest::Unit#autorun from running in at_exit hook. (Aslak Hellesøy)
1300
1390
  - Fixed incorect --help for --strict. It fails on both pending and undefined. (Aslak Hellesøy)
1301
1391
 
1302
- ## [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)
1303
1393
 
1304
1394
  ### Bugfixes
1305
1395
 
1306
1396
  - Too many open files - getcwd (#666 Aslak Hellesøy)
1307
1397
 
1308
- ## [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)
1309
1399
 
1310
1400
  ### Bugfixes
1311
1401
 
1312
1402
  - Just a minor internal change to make Cuke4Duke happy. (Aslak Hellesøy)
1313
1403
 
1314
- ## [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)
1315
1405
 
1316
1406
  Maintenance release for the new release of Gherkin 2.2.3.
1317
1407
 
@@ -1333,14 +1423,14 @@ Maintenance release for the new release of Gherkin 2.2.3.
1333
1423
 
1334
1424
  - Big refactoring of StepMother (Matt Wynne)
1335
1425
 
1336
- ## [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)
1337
1427
 
1338
1428
  ### Bugfixes
1339
1429
 
1340
1430
  - Location of stepdefs outside the project (in gems) are reported incorrectly. (#583 Aslak Hellesøy)
1341
1431
  - Cucumber::Rake::Task uses 'bundle exec' when using bundler (#626 John Firebaugh)
1342
1432
 
1343
- ## [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)
1344
1434
 
1345
1435
  ### Bugfixes
1346
1436
 
@@ -1351,7 +1441,7 @@ Maintenance release for the new release of Gherkin 2.2.3.
1351
1441
  - Detect limit for negative tags (#636 Aslak Hellesøy)
1352
1442
  - Support for RSpec 2 doubles (mocks and stubs) (Aslak Hellesøy)
1353
1443
 
1354
- ## [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)
1355
1445
 
1356
1446
  Just a quick bugfix release.
1357
1447
 
@@ -1359,7 +1449,7 @@ Just a quick bugfix release.
1359
1449
 
1360
1450
  - Scenario outlines that fail with exception exit process (Aslak Hellesøy)
1361
1451
 
1362
- ## [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)
1363
1453
 
1364
1454
  Bugfix release which most importantly fixes an issue with the gem's gemspec.
1365
1455
 
@@ -1374,7 +1464,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1374
1464
 
1375
1465
  - JavaScript to Hide/Expand Scenarios in HTML report (#621 stkenned)
1376
1466
 
1377
- ## [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)
1378
1468
 
1379
1469
  ### Bufixes
1380
1470
 
@@ -1384,7 +1474,7 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1384
1474
 
1385
1475
  - Undefined steps with integers (Given 3 cukes) will generate snippets like (Given /(\d+) cukes/). (Aslak Hellesøy)
1386
1476
 
1387
- ## [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)
1388
1478
 
1389
1479
  ### Bugfixes
1390
1480
 
@@ -1407,20 +1497,20 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1407
1497
  - Ruby snippets will use "([^"]_)" instead of "([^\"]_)"$/ - wasn't properly fixed in 0.7.1. (Aslak Hellesøy)
1408
1498
  - Preserve the order features files are passed and use this for execution order (#617 Joseph Wilk)
1409
1499
 
1410
- ## [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)
1411
1501
 
1412
1502
  ### New Features
1413
1503
 
1414
1504
  - Table cells can now contain escaped bars - \| and escaped backslashes - \\. (Gregory Hnatiuk, Aslak Hellesøy)
1415
1505
  - Added support for Around hooks. (#605 John Firebaugh)
1416
1506
 
1417
- ## [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)
1418
1508
 
1419
1509
  ### Bugfixes
1420
1510
 
1421
1511
  - REALLY add backwards compatibility fix (with deprecation warning) for legacy 0.6.4 formatters. (Aslak Hellesøy)
1422
1512
 
1423
- ## [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)
1424
1514
 
1425
1515
  ### Bugfixes
1426
1516
 
@@ -1430,32 +1520,32 @@ Bugfix release which most importantly fixes an issue with the gem's gemspec.
1430
1520
 
1431
1521
  - Ruby and Javascript snippets will use "([^"]_)" instead of "([^\"]_)"$/ (Aslak Hellesøy)
1432
1522
 
1433
- ## [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)
1434
1524
 
1435
1525
  This release is an important milestone for Cucumber. A new parser (the gherkin gem) parses feature
1436
1526
  files 50-100 times faster than with 0.6.x and previous releases. Make sure you read the upgrade
1437
1527
  instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1438
1528
 
1439
- ## [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)
1440
1530
 
1441
1531
  ### Bugfixes
1442
1532
 
1443
1533
  - Inconsistent order of execution Background and Before in 0.7.0.beta.2 (#600 Mike Sassak)
1444
1534
  - Make sure both lexing and parsing errors are captured and reported with line number (Gregory Hnatiuk)
1445
1535
 
1446
- ## [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)
1447
1537
 
1448
1538
  ### Bugfixes
1449
1539
 
1450
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)
1451
1541
 
1452
- ## [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)
1453
1543
 
1454
1544
  ### Bugfixes
1455
1545
 
1456
1546
  - Fixed a small regression with pystrings and calling steps from stepdefs, introduced in a previous beta. (Aslak Hellesøy)
1457
1547
 
1458
- ## [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)
1459
1549
 
1460
1550
  ### New Features
1461
1551
 
@@ -1465,7 +1555,7 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1465
1555
 
1466
1556
  - No more support for RSpec <= 1.2.3. (Aslak Hellesøy)
1467
1557
 
1468
- ## [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)
1469
1559
 
1470
1560
  ### New Features
1471
1561
 
@@ -1475,19 +1565,19 @@ instructions! http://wiki.github.com/aslakhellesoy/cucumber/upgrading
1475
1565
 
1476
1566
  - Gherkin is loaded via rubygems if it can't be found on the $LOAD_PATH. (Aslak Hellesøy)
1477
1567
 
1478
- ## [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)
1479
1569
 
1480
1570
  ### Changed Features
1481
1571
 
1482
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)
1483
1573
 
1484
- ## [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)
1485
1575
 
1486
1576
  ### New Features
1487
1577
 
1488
1578
  - Depend on Gherkin 1.0.18, which has some bugfixes. (Aslak Hellesøy)
1489
1579
 
1490
- ## [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)
1491
1581
 
1492
1582
  Treetop is gone and replaced with Ragel. The new Ragel parser lives in the gherkin gem.
1493
1583
  Parse times are up to 100 times faster.
@@ -1500,7 +1590,7 @@ Parse times are up to 100 times faster.
1500
1590
 
1501
1591
  - New i18n translations now have to be contributed to the gherkin project.
1502
1592
 
1503
- ## [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)
1504
1594
 
1505
1595
  ### Bugfixes
1506
1596
 
@@ -1524,7 +1614,7 @@ Parse times are up to 100 times faster.
1524
1614
  - Switced to ISO 639-1 (language) and ISO 3166 alpha-2 (region - if applicable). Applies to Catalan,
1525
1615
  Swedish, Welsh, Romanian and Serbian. (Aslak Hellesøy)
1526
1616
 
1527
- ## [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)
1528
1618
 
1529
1619
  ### Bugfixes
1530
1620
 
@@ -1545,7 +1635,7 @@ Parse times are up to 100 times faster.
1545
1635
  - Add tags to begin/end scenario messages on wire protocol to support tagged hooks (#571 Matt Wynne)
1546
1636
  - Default timeouts to 120s for invoke, begin_scenario and end_scenario messages in wire protocol (#572 Matt Wynne)
1547
1637
 
1548
- ## [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)
1549
1639
 
1550
1640
  ### Bugfixes
1551
1641
 
@@ -1565,13 +1655,13 @@ Parse times are up to 100 times faster.
1565
1655
 
1566
1656
  - element_at and table_at have been removed. Use tableish in cucumber-rails instead. (Aslak Hellesœy)
1567
1657
 
1568
- ## [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)
1569
1659
 
1570
1660
  ### Bugfixes
1571
1661
 
1572
1662
  - Fixed broken console handling on Windows/JRuby that was introduced in 0.6.0. (Aslak Hellesøy)
1573
1663
 
1574
- ## [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)
1575
1665
 
1576
1666
  Bumping to 0.6.0 for this release since we're breaking backwards compatibility with tags.
1577
1667
 
@@ -1598,7 +1688,7 @@ Bumping to 0.6.0 for this release since we're breaking backwards compatibility w
1598
1688
  - All features (except 4) pass on 1.9.2 (but not on 1.9.1) (Aslak Hellesøy)
1599
1689
  - Add missing require statement in rerun formatter which broke RubyMine (Noah Sussman)
1600
1690
 
1601
- ## [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)
1602
1692
 
1603
1693
  Another small release today to please a sister project. This time Cuke4Nuke.
1604
1694
 
@@ -1606,7 +1696,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1606
1696
 
1607
1697
  - Simplified wire protocol to mostly use success / fail responses (Matt Wynne)
1608
1698
 
1609
- ## [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)
1610
1700
 
1611
1701
  ### New Features
1612
1702
 
@@ -1618,7 +1708,7 @@ Another small release today to please a sister project. This time Cuke4Nuke.
1618
1708
  - Add #embed back to html formatter (#547 Brandon Faloona)
1619
1709
  - Refactored wire protocol code and added configurable timeout to allow for long running step definitions. (#546 Matt Wynne)
1620
1710
 
1621
- ## [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)
1622
1712
 
1623
1713
  Small bugfix release.
1624
1714
 
@@ -1626,7 +1716,7 @@ Small bugfix release.
1626
1716
 
1627
1717
  - Replaced dependency on json gem with an error message, so that the cucumber gem installs on JRuby. (Aslak Hellesøy)
1628
1718
 
1629
- ## [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)
1630
1720
 
1631
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.
1632
1722
  Please see History.txt in cucumber-rails for details about what's new on the Rails side.
@@ -1661,7 +1751,7 @@ Please see History.txt in cucumber-rails for details about what's new on the Rai
1661
1751
  - All Rails-related code is in a separate gem: cucumber-rails. Install that if you're working with Rails. (#483 Aslak Hellesøy)
1662
1752
  - --language is removed: http://wiki.github.com/aslakhellesoy/cucumber/spoken-languages (Aslak Hellesøy)
1663
1753
 
1664
- ## [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)
1665
1755
 
1666
1756
  What a bad day to make a release, but here goes.
1667
1757
 
@@ -1689,7 +1779,7 @@ What a bad day to make a release, but here goes.
1689
1779
  - $cucumber_interrupted is now Cucumber.wants_to_quit - avoid global variable, which gives warnings. (Aslak Hellesøy)
1690
1780
  - Examples keyword without a colon is deprecated loudly. Gherkin will not recognize it at all. (Gherkin #30 Mike Sassak)
1691
1781
 
1692
- ## [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)
1693
1783
 
1694
1784
  The exciting thing about this release is that the wire protocol is starting to take shape. This means you can
1695
1785
  now use Cucumber with .NET - writing step definitions in C#. And this is without having to use IronRuby at all!
@@ -1720,11 +1810,11 @@ As usual there are several small features and bug fixes.
1720
1810
  - JUnit formatter raises a more helpful error when run on a feature with no name. (#493 Matt Wynne)
1721
1811
  - Better Danish translation (Thorbjørn Ravn Andersen)
1722
1812
 
1723
- ## [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)
1724
1814
 
1725
1815
  Bugfix release. The 0.4.1 release was hosed when switching from Hoe to Jeweler.
1726
1816
 
1727
- ## [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)
1728
1818
 
1729
1819
  This is mostly a bugfix release. Some of Cucumber's own features have been fixed so they pass on more platforms,
1730
1820
  making it easier for people to contribute. The README.txt also describes how to get up and running with the
@@ -1755,7 +1845,7 @@ development environment.
1755
1845
  - Added StepMother#invoke(step_name, multiline_argument=nil) - needed by cuke4duke ticket #26 (Aslak Hellesøy)
1756
1846
  - StepDefinitionMethods is gone.
1757
1847
 
1758
- ## [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)
1759
1849
 
1760
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
1761
1851
  went nuts and a lot of great contributions came in. Some of those broke backwards compatibility, and we decided it would be
@@ -1806,7 +1896,7 @@ that will give you more information so you can solve any problems. If not, just
1806
1896
  - Better backtraces for Ruby 1.8.7. (Jakob Skov-Pedersen)
1807
1897
  - String step definitions ( Given 'I have $number cucumbers' ) are escaped before being turned into regular expressions. (David Waite)
1808
1898
 
1809
- ## [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)
1810
1900
 
1811
1901
  This release has some minor changes to the command line and formatters. The biggest change is internally, paving
1812
1902
  the way for more programming language support in Cuke4Duke, which now supports step definitions written in Java, Scala,
@@ -1835,7 +1925,7 @@ Groovy, Clojure and Javascript!
1835
1925
  - The steps formatter has been renamed to stepdefs formatter. (Aslak Hellesøy)
1836
1926
  - The internal programming language API has changed, giving more power to the implementation. See #428. (Aslak Hellesøy)
1837
1927
 
1838
- ## [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)
1839
1929
 
1840
1930
  This release gives you back some of the control over the Rails environment that was accidentally taken away from you in the
1841
1931
  previous release.
@@ -1856,7 +1946,7 @@ Using this release on a Rails project requires a rerun of script/generate cucumb
1856
1946
 
1857
1947
  - The Formatter API has completely changed. Formatters are no longer a double-dispacth visitor - just a single-dispatch listener (#438 Matt Wynne)
1858
1948
 
1859
- ## [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)
1860
1950
 
1861
1951
  This release has some changes in the Rails support, so make sure you run "script/generate cucumber" after you upgrade.
1862
1952
  Other noteworthy new features are improved Hook, tags and Transform support, and as always - several smaller bug fixes.
@@ -1902,7 +1992,7 @@ your features to your customer for review!
1902
1992
  - Adding webrat steps for asserting content does or does not exist within a particular element
1903
1993
  (using webrat's within method) (Kieran Pilkington)
1904
1994
 
1905
- ## [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)
1906
1996
 
1907
1997
  The JavaZone release!
1908
1998
 
@@ -1916,7 +2006,7 @@ The JavaZone release!
1916
2006
  - Backtraces on JRuby are handled in a cleaner way when the exception comes from Java (NativeException). (Aslak Hellesøy)
1917
2007
  - When exceptions occur in a Before block the rest of the scenario is now skipped (#331 Matt Wynne)
1918
2008
 
1919
- ## [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)
1920
2010
 
1921
2011
  ### New Features
1922
2012
 
@@ -1926,7 +2016,7 @@ The JavaZone release!
1926
2016
  - New AfterConfiguration hook added; a block can be specified that takes Cucumber::Cli::Configuration (#423 Brent Snook)
1927
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)
1928
2018
 
1929
- ## [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)
1930
2020
 
1931
2021
  Just a small release to help Cuke4Duke, which will be presented at Agile2009
1932
2022
  in 2 days.
@@ -1936,7 +2026,7 @@ in 2 days.
1936
2026
  - Backtrace filtering now happens in StepInvocation class, meaning other languages (Cuke4Duke) can get backtraces stripped. (Aslak Hellesøy)
1937
2027
  - Cucumber::Ast::Table#map_headers now allows for a block that will convert all the headers. See docs for details. (Ben Mabey)
1938
2028
 
1939
- ## [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)
1940
2030
 
1941
2031
  The AA-FTT release. Creating a release for the AA-FTT meeting in Chicago so that we can play
1942
2032
  with the new language API and maybe knock out some better .NET support.
@@ -1958,7 +2048,7 @@ with the new language API and maybe knock out some better .NET support.
1958
2048
  - Changed the Programming Language API to support languages without "bleed through" (e.g. rubypython can't invoke ruby objs) (Aslak Hellesøy)
1959
2049
  - The Programming Language API manages hooks on the language level instead of on the step mother level (Aslak Hellesøy)
1960
2050
 
1961
- ## [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)
1962
2052
 
1963
2053
  This release doesn't have any significant new features or bug fixes, but there are big
1964
2054
  internal changes. This release has a new API for plugging in other programming languages.
@@ -1979,7 +2069,7 @@ be patched. Please upgrade to Spork 0.5.9 if you are using Spork.
1979
2069
  - --strict will cause an exit code 1 for missing and pending (used to be for missing only). (Mads Buus)
1980
2070
  - junit formatter doesn't report pending steps unless --strict is used. (Mads Buus)
1981
2071
 
1982
- ## [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)
1983
2073
 
1984
2074
  This release improves Webrat support for table-like HTML markup. Now you can easily turn the HTML
1985
2075
  elements table, dl, ol and ul elements into a 2D array. This is particularly useful for comparing
@@ -2009,7 +2099,7 @@ This release also fixes several bugs related to --drb (Spork) and profiles (cucu
2009
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)
2010
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)
2011
2101
 
2012
- ## [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)
2013
2103
 
2014
2104
  Kanban take II.
2015
2105
 
@@ -2039,7 +2129,7 @@ You'll achieve better flow this way.
2039
2129
  - Document builtin formatters with --help. (#406 Aslak Hellesøy)
2040
2130
  - Added support for using regular expressions when mapping table headers. (Peter Williams)
2041
2131
 
2042
- ## [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)
2043
2133
 
2044
2134
  Highlights in this release: Improved profile handling (cucumber.yml) and a fix for cucumber hanging.
2045
2135
 
@@ -2056,7 +2146,7 @@ Highlights in this release: Improved profile handling (cucumber.yml) and a fix f
2056
2146
  - script/cucumber correctly loads the gem's binary if the plugin isn't installed.
2057
2147
  - Cucumber hangs waiting for Ctrl+C if an Error is raised. (#374 Aslak Hellesøy)
2058
2148
 
2059
- ## [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)
2060
2150
 
2061
2151
  This release has some minor improvements to the new Table.diff! functionality. For example,
2062
2152
  if you're using Webrat and you want to compare a feature table with a HTML table containing
@@ -2080,7 +2170,7 @@ links in one of the columns, you can do:
2080
2170
 
2081
2171
  - The 'default' profile is now ALWAYS used unless you specify another profile or use the -P or --no-profile flag. (#344 Ben Mabey)
2082
2172
 
2083
- ## [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)
2084
2174
 
2085
2175
  ### New Features
2086
2176
 
@@ -2089,7 +2179,7 @@ links in one of the columns, you can do:
2089
2179
  - Support limiting the number of feature elements with certain tags (#353 Joseph Wilk)
2090
2180
  - Table support for cuke4duke
2091
2181
 
2092
- ## [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)
2093
2183
 
2094
2184
  The Hot summer release
2095
2185
 
@@ -2193,7 +2283,7 @@ This release also has several bugfixes related to --format and Before/After hook
2193
2283
  - The data returned from Table#hashes and similar methods are frozen. Dup if you need to modify. (Aslak Hellesøy)
2194
2284
  - Visitor.visit_table_cell_value(value, col_width, status) is now visitor.visit_table_cell_value(value, status)
2195
2285
 
2196
- ## [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)
2197
2287
 
2198
2288
  This release just fixes a tiny bug in the formatter to fix an incompatibility
2199
2289
  with the latest RedMine release. It should have been included in 0.3.10, but
@@ -2203,7 +2293,7 @@ was forgotten.
2203
2293
 
2204
2294
  - Formatter API was broken in 0.3.9 (Roman Chernyatchik)
2205
2295
 
2206
- ## [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)
2207
2297
 
2208
2298
  The Spork Release!
2209
2299
 
@@ -2246,7 +2336,7 @@ This release also has some minor bugfixes related to RSpec and Rails interop.
2246
2336
 
2247
2337
  - The HTML formatter wraps examples in a div, and distinguishes between Scenario and Scenario Outline. (Aslak Hellesøy)
2248
2338
 
2249
- ## [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)
2250
2340
 
2251
2341
  Bugfix release for 0.3.8 released earlier today. 0.3.8 had a bug in the Rails cucumber
2252
2342
  generator which is fixed in 0.3.9.
@@ -2256,7 +2346,7 @@ generator which is fixed in 0.3.9.
2256
2346
  - Fix broken Rails cucumber generator (Tim Glen)
2257
2347
  - The Cucumber Rake task in non-fork mode will properly cause Rake to exit with 1 when Cucumber fails. (Aslak Hellesøy)
2258
2348
 
2259
- ## [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)
2260
2350
 
2261
2351
  This Cucumber version fixes several bugs related to Ruby on Rails and RSpec. If you
2262
2352
  use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber again:
@@ -2280,7 +2370,7 @@ use Cucumber with a Rails app we*strongly* recommend you bootstrap Cucumber agai
2280
2370
  - Better coexistence with RSpec - Cucumber now*neuters* the part of RSpec that tries to parse ARGV.
2281
2371
  - The differ= exception is gone (#325, #340 Aslak Hellesøy)
2282
2372
 
2283
- ## [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)
2284
2374
 
2285
2375
  This is the "Help JetBrains RubyMine" release!
2286
2376
 
@@ -2295,7 +2385,7 @@ This is the "Help JetBrains RubyMine" release!
2295
2385
  - 'specs' folder needs to be renamed back to 'spec' (#339 Aslak Hellesøy)
2296
2386
  - CUCUMBER_OPTS doesn't work for cucumber rake tasks (#336 Aslak Hellesøy)
2297
2387
 
2298
- ## [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)
2299
2389
 
2300
2390
  Kanban! With this release you can tag features or scenarios that are work in progress
2301
2391
  with a tag and use the new --wip switch.
@@ -2315,7 +2405,7 @@ Another handy feature in this release is that you can package your own formatter
2315
2405
  - Gracefully handle exceptions in After block (#330 Matt Wynne)
2316
2406
  - Feature with only Background doesn't run hooks (#314, #329 Aslak Hellesøy)
2317
2407
 
2318
- ## [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)
2319
2409
 
2320
2410
  Let's make a new release today because two annoying bugs are fixed.
2321
2411
 
@@ -2323,7 +2413,7 @@ Let's make a new release today because two annoying bugs are fixed.
2323
2413
 
2324
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)
2325
2415
 
2326
- ## [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)
2327
2417
 
2328
2418
  A couple of great new features in this release. Running with Rake is faster than before,
2329
2419
  and there is a brand new JUnit formatter - great for Continuous Integration reports!
@@ -2370,7 +2460,7 @@ However, setting the RAILS_ENV is easy to forget, so I don't recommend relying o
2370
2460
  unless explicitly told to fork a new interpreter. This is to increase speed. You can
2371
2461
  force a new interpreter by setting fork=true or rcov=true in the task.
2372
2462
 
2373
- ## [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)
2374
2464
 
2375
2465
  Minor bugfix release, made specially for EuRuKo!
2376
2466
 
@@ -2384,7 +2474,7 @@ Minor bugfix release, made specially for EuRuKo!
2384
2474
 
2385
2475
  - New aliases: --no-source/-s, --name/-n (#317 Lonnon Foster)
2386
2476
 
2387
- ## [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)
2388
2478
 
2389
2479
  This release has some minor bug fixes and new features.
2390
2480
  Nothing major, but we need a release for RailsConf'09 in Las Vegas!
@@ -2402,7 +2492,7 @@ Nothing major, but we need a release for RailsConf'09 in Las Vegas!
2402
2492
  - Examples and the associated tables are indented one level deeper than Scenario Outline. (Aslak Hellesøy)
2403
2493
  - Added support for Examples selection when using --name. (#295 Joseph Wilk)
2404
2494
 
2405
- ## [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)
2406
2496
 
2407
2497
  This release has several minor bug fixes and new features. With the addition of Latvian and Hungarian Cucumber
2408
2498
  now supports 32(!!) languages.
@@ -2430,7 +2520,7 @@ now supports 32(!!) languages.
2430
2520
 
2431
2521
  - --scenario handle has been removed and replaced with --name which supports partial matches, regexp special characters, running named backgrounds (#295 Joseph Wilk)
2432
2522
 
2433
- ## [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)
2434
2524
 
2435
2525
  This release has some minor changes to the APIs, but big enough that a new major release is in order.
2436
2526
  The biggest change is the new semantics of the #World method. Previously you would call this method
@@ -2488,7 +2578,7 @@ http://wiki.github.com/aslakhellesoy/cucumber/using-rake#profiles
2488
2578
  - Table and PyString no longer hold status information. Each visitor subclass should store state in @state if needed.
2489
2579
  - \#visit_py_string no longer takes a status argument.
2490
2580
 
2491
- ## [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)
2492
2582
 
2493
2583
  This release sports 4 updated languages, slightly better help with snippets if you "quote" arguments
2494
2584
  in your steps. Windows/JRuby users can enjoy colours and you get some more sugar with Tables.
@@ -2510,7 +2600,7 @@ in your steps. Windows/JRuby users can enjoy colours and you get some more sugar
2510
2600
  - Fixed step name after step keyword without space (#265 Aslak Hellesøy)
2511
2601
  - Backtrace is back in HTML reports (Aslak Hellesøy)
2512
2602
 
2513
- ## [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)
2514
2604
 
2515
2605
  This release includes some minor changes to make Cucumber work with pure Java. Cucumber
2516
2606
  has already worked with Java for a while (using JRuby and step definitions in Ruby),
@@ -2519,7 +2609,7 @@ but now you can write step definitions in pure Java!
2519
2609
  Check out the Cucumber Java project for more details:
2520
2610
  http://github.com/aslakhellesoy/cucumber_java/tree/master
2521
2611
 
2522
- ## [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)
2523
2613
 
2524
2614
  This release fixes a few minor bugs and adds a couple of new features.
2525
2615
 
@@ -2541,7 +2631,7 @@ This release fixes a few minor bugs and adds a couple of new features.
2541
2631
 
2542
2632
  - -S/--step-definitions option introduced in 0.2.0 is removed. Use --format usage [--dry-run] [--no-color].
2543
2633
 
2544
- ## [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)
2545
2635
 
2546
2636
  This release sports a bunch of new and exciting features, as well a major rewrite of Cucumber's internals.
2547
2637
  The rewrite was done to address technical debt and to have a code base that is easier to evolve and maintain.
@@ -2625,7 +2715,7 @@ for multiline arguments are some of the highlights.
2625
2715
  - Pure Ruby features are no longer supported.
2626
2716
  - Remove --color option in autotest. Can be added manually in cucumber.yml (#215 Jean-Michel Garnier)
2627
2717
 
2628
- ## 0.1.16.4
2718
+ ## 0.1.16.4 (2009-01-22)
2629
2719
 
2630
2720
  Bugfix release.
2631
2721
 
@@ -2651,7 +2741,7 @@ to this:
2651
2741
  - Better handling of ARGV (#169 David Chelimsky, Ben Mabey)
2652
2742
  - Compatibility with ruby-debug (do ARGV.dup in bin/cucumber so it can restart ruby with same args) (Aslak Hellesøy)
2653
2743
 
2654
- ## [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)
2655
2745
 
2656
2746
  This is a small bugfix release. The most notable improvement is compatibility with Webrat 0.4. Rails/Webrat users should
2657
2747
  upgrade both Cucumber and Webrat gems.
@@ -2669,7 +2759,7 @@ upgrade both Cucumber and Webrat gems.
2669
2759
 
2670
2760
  ### Removed features
2671
2761
 
2672
- ## [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)
2673
2763
 
2674
2764
  Bugfix release
2675
2765
 
@@ -2684,7 +2774,7 @@ Bugfix release
2684
2774
  - Better quoting of Scenario names in Autotest (Peter Jaros)
2685
2775
  - Added some small workarounds for unicode handling on Windows (Aslak Hellesøy)
2686
2776
 
2687
- ## [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)
2688
2778
 
2689
2779
  This is the first release of Cucumber that runs on Ruby 1.9. There are still some encoding-related issues
2690
2780
  with Arabic (ar), Japanese (ja) and Simplified Chinese (zh-CN). Patches are welcome. Other than that -
@@ -2704,7 +2794,7 @@ a couple of minor bug fixes and polishing.
2704
2794
 
2705
2795
  - The #binary= method is gone from the Rake task. It will always point to the binary in the current gem. (Aslak Hellesøy)
2706
2796
 
2707
- ## [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)
2708
2798
 
2709
2799
  It's time for some new features again. Output is now much better since you can use diffing, tweak
2710
2800
  the output colours and get the full --backtrace if you want. Managing your support/\* files became
@@ -2741,7 +2831,7 @@ Enjoy!
2741
2831
 
2742
2832
  ### Removed features
2743
2833
 
2744
- ## [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)
2745
2835
 
2746
2836
  This is the "getting serious with IronRuby release" - largely based on
2747
2837
  "Patrick Gannon":http://www.patrickgannon.net/archive/2008/10/23/bdd-style-feature-tests-using-ironruby-and-rspeccucumber.aspx's
@@ -2759,7 +2849,7 @@ blog entry.
2759
2849
 
2760
2850
  None
2761
2851
 
2762
- ## [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)
2763
2853
 
2764
2854
  Bugfix release with a couple of minor additional features to the command line options.
2765
2855
 
@@ -2780,7 +2870,7 @@ Bugfix release with a couple of minor additional features to the command line op
2780
2870
 
2781
2871
  - The cucumber gem no longer depends on the rspec gem. It must be downloaded manually if RSpec is used. (Jeff Rafter)
2782
2872
 
2783
- ## [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)
2784
2874
 
2785
2875
  This release mostly has smaller bugfixes. The most significant new feature is how
2786
2876
  line numbers are specified. You can now run multiple features at specific lines numbers like this:
@@ -2813,7 +2903,7 @@ This will run foo.feature at line 15 and bar.feature at line 6, 45 and 111.
2813
2903
  - Step definition without a block being treated as pending (#64 Joseph Wilk)
2814
2904
  - The --line option has been removed. Use the new file.feature:line format instead.
2815
2905
 
2816
- ## [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)
2817
2907
 
2818
2908
  With this release Cucumber supports 19 (!) natural languages:
2819
2909
 
@@ -2897,7 +2987,7 @@ spaces removed too.
2897
2987
 
2898
2988
  ### Removed features
2899
2989
 
2900
- ## [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)
2901
2991
 
2902
2992
  This release extends the support for tables. PLEASE NOTE THAT TABLES ARE STILL EXPERIMENTAL.
2903
2993
  In previous releases it has been possible to use tables to define "more examples" of a scenario in
@@ -2981,7 +3071,7 @@ The step definitions for such multiline steps must define an extra block argumen
2981
3071
 
2982
3072
  - Added new --out option to make it easier to specify output from Rake and cucumber.yml
2983
3073
 
2984
- ## [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)
2985
3075
 
2986
3076
  This release fixes a few bugs and adds some new features. The most notable features are:
2987
3077
 
@@ -3036,6 +3126,6 @@ a plain text step is defined. Not anymore! Cucumber will now output this:
3036
3126
  - Added --no-source option to display step definition location next to step text (#26, Joseph Wilk, Aslak Hellesøy)
3037
3127
  - Added more Webrat steps (#25, Tim Glen)
3038
3128
 
3039
- ## [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)
3040
3130
 
3041
3131
  First gem release!