From 7cd70ac6c27dd493c57bb33ce47f0cf82d853d27 Mon Sep 17 00:00:00 2001 From: Zee Spencer Date: Sun, 3 Dec 2017 13:37:41 -0800 Subject: [PATCH] Changelog and version bump for informed-ruby 1.1.1 --- informed-ruby/CHANGELOG.md | 12 ++++++++++++ informed-ruby/Gemfile.lock | 2 +- informed-ruby/lib/informed/version.rb | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 informed-ruby/CHANGELOG.md diff --git a/informed-ruby/CHANGELOG.md b/informed-ruby/CHANGELOG.md new file mode 100644 index 0000000..0e7774d --- /dev/null +++ b/informed-ruby/CHANGELOG.md @@ -0,0 +1,12 @@ +### 1.1.1 +#### Bug Fixes +* [#11](https://github.com/wecohere/informed/pull/11) - Prioritize keyword args over method calls when there are name collisions + +### 1.1.0 + +#### Enhancements +* [#2](https://github.com/wecohere/informed/pull/2) - Support methods that take blocks +* [#1](https://github.com/wecohere/informed/pull/1) - Include the class name in log messages + +### 1.0.0 +Initial release, provides `inform_on` syntax at the class level. diff --git a/informed-ruby/Gemfile.lock b/informed-ruby/Gemfile.lock index af69db5..f66185a 100644 --- a/informed-ruby/Gemfile.lock +++ b/informed-ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - informed (1.1.0) + informed (1.1.1) GEM remote: https://rubygems.org/ diff --git a/informed-ruby/lib/informed/version.rb b/informed-ruby/lib/informed/version.rb index 182542b..c9ec9b4 100644 --- a/informed-ruby/lib/informed/version.rb +++ b/informed-ruby/lib/informed/version.rb @@ -1,3 +1,3 @@ module Informed - VERSION = "1.1.0" + VERSION = "1.1.1" end