Skip to content

Commit

Permalink
Bump version to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiob committed Nov 25, 2013
1 parent fbb3368 commit 63b8215
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
PATH
remote: .
specs:
rspec-api-expectations (0.6.2)
rspec-api-expectations (0.7.0)
activesupport
faraday
rack
rspec
rspec-api-matchers (~> 0.6.1)
rspec-api-matchers (~> 0.7.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -40,7 +40,7 @@ GEM
rspec-core (~> 2.14.0)
rspec-expectations (~> 2.14.0)
rspec-mocks (~> 2.14.0)
rspec-api-matchers (0.6.1)
rspec-api-matchers (0.7.0)
activesupport
rack
rspec
Expand Down
6 changes: 1 addition & 5 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
v0.6.2 - 2013/11/16
v0.7.0 - 2013/11/24
--------------------

* the block passed `expect_response` can use RSpecApi::Matchers, e.g. expect(response).to have_attributes

v0.6.1 - 2013/11/16
--------------------

* `expect_response` accepts a block where custom expectations can be run on the response and request params

v0.6.0 - 2013/11/09
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec-api/expectations/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module RSpecApi
module Expectations
VERSION = '0.6.2'
VERSION = '0.7.0'
end
end
2 changes: 1 addition & 1 deletion rspec-api-expectations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|

spec.add_dependency 'rspec'
spec.add_dependency 'activesupport' # for Array.wrap, slice, concern, ...
spec.add_dependency 'rspec-api-matchers', '~> 0.6.1' # expect(200).to match_status(200)
spec.add_dependency 'rspec-api-matchers', '~> 0.7.0' # expect(200).to match_status(200)
spec.add_dependency 'rack' # for ::Utils

# For integration tests
Expand Down
2 changes: 1 addition & 1 deletion spec/rspec-api/expectations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
should_respond_to :expect_response
end

context 'example groups that include RSpecApi::Expectations' do
context 'example groups that extend RSpecApi::Expectations' do
extend RSpecApi::Expectations
should_respond_to :expect_response
end
Expand Down

0 comments on commit 63b8215

Please sign in to comment.