Skip to content

Commit

Permalink
Preps version 1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
arempe93 committed May 13, 2016
1 parent 1020706 commit 9068cef
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ AllCops:
Exclude:
- 'spec/**/*'

Metrics/ClassLength:
Enabled: false

inherit_from: .rubocop_todo.yml
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v1.3.0

* [#12](https://github.com/arempe93/bunny-mock/pull/12): Adds `basic_publish` functionality to `Channel` - [@podung](https://github.com/podung)
* [#13](https://github.com/arempe93/bunny-mock/pull/13): Add `confirm_select` method stub - [@baelter](https://github.com/baelter)

## v1.2.2

* [#6](https://github.com/arempe93/bunny-mock/pull/6): Adds more status methods to `Session` - [@syndbg](https://github.com/syndbg)
Expand Down
1 change: 1 addition & 0 deletions lib/bunny_mock/channel.rb
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ def xchg_unbind(routing_key, name)

private

# @private
def xchg_find_or_create(name, opts = {})
@connection.find_exchange(name) || Exchange.declare(self, name, opts)
end
Expand Down
2 changes: 1 addition & 1 deletion lib/bunny_mock/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

module BunnyMock
# @return [String] Version of the library
VERSION = '1.2.2'
VERSION = '1.3.0'
end

0 comments on commit 9068cef

Please sign in to comment.