From 5b7e2cb6ca70459dddfc8566ee2c9a51ee51fc24 Mon Sep 17 00:00:00 2001 From: Xabier de Zuazo Date: Fri, 23 May 2014 15:10:26 +0200 Subject: [PATCH] release 0.1.1 --- CHANGELOG.md | 8 ++++++++ chef-encrypted-attributes.gemspec | 2 +- lib/chef/encrypted_attribute/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2aec57..696d94b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/chef-encrypted-attributes.gemspec b/chef-encrypted-attributes.gemspec index cdbba2f..02b8d72 100644 --- a/chef-encrypted-attributes.gemspec +++ b/chef-encrypted-attributes.gemspec @@ -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' diff --git a/lib/chef/encrypted_attribute/version.rb b/lib/chef/encrypted_attribute/version.rb index e93fc4b..1d8de0c 100644 --- a/lib/chef/encrypted_attribute/version.rb +++ b/lib/chef/encrypted_attribute/version.rb @@ -18,6 +18,6 @@ class Chef class EncryptedAttribute - VERSION = '0.1.1.dev' + VERSION = '0.1.1' end end