Skip to content

Commit

Permalink
release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zuazo committed May 23, 2014
1 parent cef1fd2 commit 5b7e2cb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 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-encrypted-attributes`.

## 0.1.1:

* gemspec: replaced open-ended chef dependency by `~> 11.4`
* Fixed ruby `1.9.2` decryption (uses `PKCS#1` for public key format)
* README: added `encrypted_attributes` cookbook link
* INTERNAL doc: added `EncryptedMash` class name to the Version0 structure
* Added shields.io badges

## 0.1.0:

* Initial release of `chef-encrypted-attributes`
2 changes: 1 addition & 1 deletion chef-encrypted-attributes.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ chef_version = ENV.key?('CHEF_VERSION') ? ENV['CHEF_VERSION'] : '~> 11.4'
Gem::Specification.new do |s|
s.name = 'chef-encrypted-attributes'
s.version = ::Chef::EncryptedAttribute::VERSION
s.date = '2014-05-21'
s.date = '2014-05-23'
s.platform = Gem::Platform::RUBY
s.summary = 'Chef Encrypted Attributes'
s.description = 'Chef plugin to add Node encrypted attributes support using client keys'
Expand Down
2 changes: 1 addition & 1 deletion lib/chef/encrypted_attribute/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@

class Chef
class EncryptedAttribute
VERSION = '0.1.1.dev'
VERSION = '0.1.1'
end
end

0 comments on commit 5b7e2cb

Please sign in to comment.