Skip to content

Commit

Permalink
release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed Feb 18, 2017
1 parent 741ee32 commit 68bb349
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

This file is used to list changes made in each version of `chef-handler-sns`.

## 2.1.0 (2017-02-18)

* Fix end time message typo in *body.erb* ([issue #8](https://github.com/zuazo/chef-handler-sns/pull/8), thanks [Hugo Lopes Tavares](https://github.com/hltbra)).
* Add `:message_structure` option support (issues [#9](https://github.com/zuazo/chef-handler-sns/issues/9) and [#10](https://github.com/zuazo/chef-handler-sns/issues/10), thanks [Dmitry Averkiev](https://github.com/d-averkiev)).
* Fix some Chef warnings.
* Fix some Ruby warnings.
* Update RuboCop to version `0.47`.

## 2.0.0 (2015-12-28)

### Breaking Changes on v2.0.0
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

[![Dependency Status](http://img.shields.io/gemnasium/zuazo/chef-handler-sns.svg?style=flat)](https://gemnasium.com/zuazo/chef-handler-sns)
[![Code Climate](http://img.shields.io/codeclimate/github/zuazo/chef-handler-sns.svg?style=flat)](https://codeclimate.com/github/zuazo/chef-handler-sns)
[![Build Status](http://img.shields.io/travis/zuazo/chef-handler-sns.svg?style=flat)](https://travis-ci.org/zuazo/chef-handler-sns)
[![Coverage Status](http://img.shields.io/coveralls/zuazo/chef-handler-sns.svg?style=flat)](https://coveralls.io/r/zuazo/chef-handler-sns?branch=master)
[![Build Status](http://img.shields.io/travis/onddo/chef-handler-sns/2.1.0.svg?style=flat)](https://travis-ci.org/onddo/chef-handler-sns)
[![Coverage Status](http://img.shields.io/coveralls/onddo/chef-handler-sns/2.1.0.svg?style=flat)](https://coveralls.io/r/onddo/chef-handler-sns?branch=2.1.0)
[![Inline docs](http://inch-ci.org/github/zuazo/chef-handler-sns.svg?branch=master&style=flat)](http://inch-ci.org/github/zuazo/chef-handler-sns)

A simple Chef report handler that reports status of a Chef run through [Amazon SNS](http://aws.amazon.com/sns/), [including IAM roles support](#usage-with-amazon-iam-roles).
Expand Down Expand Up @@ -333,6 +333,8 @@ See [TODO.md](https://github.com/zuazo/chef-handler-sns/blob/master/TODO.md).
| **Author:** | [Xabier de Zuazo](https://github.com/zuazo) (<xabier@zuazo.org>)
| **Contributor:** | [Florian Holzhauer](https://github.com/fh)
| **Contributor:** | [Michael Hobbs](https://github.com/michaelshobbs)
| **Contributor:** | [Hugo Lopes Tavares](https://github.com/hltbra)
| **Contributor:** | [Dmitry Averkiev](https://github.com/d-averkiev)
| **Copyright:** | Copyright (c) 2015 Xabier de Zuazo
| **Copyright:** | Copyright (c) 2013-2014 Onddo Labs, SL.
| **License:** | Apache License, Version 2.0
Expand Down
2 changes: 1 addition & 1 deletion chef-handler-sns.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ chef_version = ENV.key?('CHEF_VERSION') ? ENV['CHEF_VERSION'] : ['>= 0.9.0']
Gem::Specification.new do |s|
s.name = 'chef-handler-sns'
s.version = ::Chef::Handler::Sns::VERSION
s.date = '2015-12-28'
s.date = '2017-02-18'
s.platform = Gem::Platform::RUBY
s.summary = 'Chef SNS reports'
s.description =
Expand Down
2 changes: 1 addition & 1 deletion lib/chef/handler/sns/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Sns < ::Chef::Handler
#
# chef-handler-sns Ruby Gem version.
#
VERSION = '2.1.0.dev'.freeze
VERSION = '2.1.0'.freeze
end
end
end

0 comments on commit 68bb349

Please sign in to comment.