Skip to content

Commit

Permalink
Bump version to 2.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Jun 13, 2020
1 parent 5389069 commit eff9fdd
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 15 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# Changelog

## 2.0.0 (unreleased)
## 2.0.0 (2020-06-13)

### Backward-incompatible changes

* Drop support for RSpec 2 matchers. Matchers passed to `should` must conform
to RSpec 3's API (`failure_message` and `failure_message_when_negated`).
* Drop support for Minitest 4.x (except when used by Rails 4.x).
* Drop support for older versions of Rails. Rails 4.x-6.x are the
only versions supported now.
* Drop support for older versions of Ruby. Ruby 2.4.x-2.7.x are the only
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,13 @@ Shoulda Context makes it easy to write understandable and maintainable tests
under Minitest and Test::Unit within Rails projects or plain Ruby projects. It's
fully compatible with your existing tests and requires no retooling to use.

**[View the documentation for the latest version (1.2.2)][rubydocs][View
the changelog][changelog]**
## Quick links

[changelog]: CHANGELOG.md
📖 **[Read the documentation for the latest version.][rubydocs]**
📢 **[See what's changed in recent versions.][changelog]**

---
[rubydocs]: http://rubydoc.info/github/thoughtbot/shoulda-context/master/frames
[changelog]: CHANGELOG.md

## Usage

Expand Down Expand Up @@ -123,8 +124,6 @@ or via `should`):
automatically from the name of the test case class but is overridable via the
class method version of `subject` above

[rubydocs]: http://rubydoc.info/github/thoughtbot/shoulda-context/master/frames

### Assertions

In addition to the main API, the gem also provides some extra assertions that
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_4_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_1.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_5_2.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6_0.gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
shoulda-context (2.0.0.rc4)
shoulda-context (2.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/shoulda/context/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Shoulda
module Context
VERSION = "2.0.0.rc4".freeze
VERSION = "2.0.0".freeze
end
end

0 comments on commit eff9fdd

Please sign in to comment.