From 0c476bc21d3b035f2388658b2664cfbdb30f7c8d Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Wed, 17 Sep 2014 13:08:12 -0500 Subject: [PATCH] Bump version to 0.4.0 --- CHANGELOG.md | 2 ++ README.md | 2 +- lib/stoplight.rb | 2 +- stoplight.gemspec | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ec8399..f6296b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## v0.4.0 (2014-09-17) + - Made stoplights handle failing notifiers by logging the failure to standard error. - Made stoplights automatically fall back to a fresh in-memory data store if the diff --git a/README.md b/README.md index 89d3bcd..b50c9f0 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Check out [stoplight-admin][12] for controlling your stoplights. Add it to your Gemfile: ``` rb -gem 'stoplight', '~> 0.3.1' +gem 'stoplight', '~> 0.4.0' ``` Or install it manually: diff --git a/lib/stoplight.rb b/lib/stoplight.rb index 852b698..4730a46 100644 --- a/lib/stoplight.rb +++ b/lib/stoplight.rb @@ -14,7 +14,7 @@ module Stoplight # @return [Gem::Version] - VERSION = Gem::Version.new('0.3.1') + VERSION = Gem::Version.new('0.4.0') @data_store = DataStore::Memory.new @notifiers = [Notifier::IO.new($stderr)] diff --git a/stoplight.gemspec b/stoplight.gemspec index f4328ce..a0ae540 100644 --- a/stoplight.gemspec +++ b/stoplight.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = 'stoplight' - spec.version = '0.3.1' # Stoplight::VERSION + spec.version = '0.4.0' # Stoplight::VERSION spec.summary = 'Traffic control for code.' spec.description = <<-TXT.gsub(/^ +/, '') Traffic control for code. An implementation of the circuit breaker pattern