Skip to content

Commit

Permalink
release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelglass committed May 15, 2018
1 parent 36f2260 commit cad8b1c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ specified number of times until the example succeeds.

| Rspec Version | Rspec-Retry Version |
|---------------|---------------------|
| > 3.8 | 0.5.7 but untested |
| > 3.3, <= 3.8 | 0.5.7             |
| > 3.8 | 0.6.0 but untested |
| > 3.3, <= 3.8 | 0.6.0             |
| 3.2       | 0.4.6             |
| 2.14.8       | 0.4.4             |

Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.6.0 - 2018-05-15
## enhancements
add exponential backoff option (thanks @patveith, @thedrow / #91, #94, #95)
better documentation (thanks @swrobel / #90)

# 0.5.7 - 2018-03-13
## enhancements
remove <3.8 constraint on rspec-core to prevent breaking when rspec-core upgrades (thanks @dthorsen / #89)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rspec_3.3.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-retry (0.5.7)
rspec-retry (0.6.0)
rspec-core (> 3.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rspec_3.4.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-retry (0.5.7)
rspec-retry (0.6.0)
rspec-core (> 3.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rspec_3.5.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-retry (0.5.7)
rspec-retry (0.6.0)
rspec-core (> 3.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rspec_3.6.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-retry (0.5.7)
rspec-retry (0.6.0)
rspec-core (> 3.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rspec_3.7.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
rspec-retry (0.5.7)
rspec-retry (0.6.0)
rspec-core (> 3.3)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/retry/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RSpec
class Retry
VERSION = "0.5.7"
VERSION = "0.6.0"
end
end

0 comments on commit cad8b1c

Please sign in to comment.