-
Notifications
You must be signed in to change notification settings - Fork 4
/
CHANGELOG
83 lines (46 loc) · 1.92 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
== LATEST
* Fix handling of square bracket suffixes ('file[1:2:3]').
== 0.9.1 2017-03-21
* Fix passing some options which take arguments to rspec (e.g. -p).
== 0.9.0 2015-10-10
* Fail with error if an invalid number is given, so we don't run everything.
== 0.8.3 2015-06-12
* Write .respec_failures to the right path when a test messes up the pwd.
== 0.8.2 2015-03-13
* Using '1' or 'f' filters examples when used with line suffixes ('file:123').
== 0.8.1 2015-02-14
* Escape printed rspec command.
== 0.8.0 2015-02-02
* Support RSpec 3.
* Record failing example names, not locations. Requires rspec 2.11 or above.
* Wait until end of test suite before updating failure file.
* Use rspec binstub if present.
== 0.7.0 2014-04-16
* Allow setting failure file via argument. Useful under CI with parallel_tests.
== 0.6.0 2014-04-09
* Exit with status 0 if there are no failures left to retry. Useful under CI.
== 0.5.0 2013-03-02
* Fix rerunning of specs defined in non-spec files (e.g. support files).
== 0.4.1 2012-11-15
* Run spec directory by default, like rspec.
== 0.4.0 2012-11-11
* Fix further issues with custom formatter being overridden by respec.
== 0.3.0 2012-11-11
* Don't add progress formatter when user has selected something else.
* Remove 's' option. Use "-f s" instead, or an .rspec file instead.
* Pass argument to deprecated --formatter option to rspec.
== 0.2.0 2012-10-31
* Support rspec options that require an argument.
* Write failures to current directory, not home directory.
== 0.1.1 2012-09-27
* Handle file name arguments with line number suffixes.
== 0.1.0 2012-06-08
* Remove c, d, x/X shortcuts.
* Pass any argument that starts with '-' directly to rspec.
== 0.0.3 2012-05-24
* Add shortcuts for debugger (d) and DRb (x).
== 0.0.2 2012-05-23
* Run through bundler if Gemfile is present.
* Don't run whole files specified when rerunning failures.
== 0.0.1 2012-05-17
* Hi.