Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tfausak committed Sep 17, 2014
1 parent c0494db commit 0c476bc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion lib/stoplight.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion stoplight.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0c476bc

Please sign in to comment.