From 85102905b00757b29c6290735fd4ec048102a457 Mon Sep 17 00:00:00 2001 From: Xabier de Zuazo Date: Mon, 6 Jun 2016 06:00:38 +0200 Subject: [PATCH] release v1.12.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 2 +- metadata.rb | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 760a308..78c0fb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,29 @@ ssl_certificate CHANGELOG This file is used to list changes made in each version of the `ssl_certificate` cookbook. +## v1.12.0 (2016-06-06) + +* Add support for CA with passphrase ([issue #16](https://github.com/zuazo/ssl_certificate-cookbook/pull/16), thanks [Baptiste Courtois](https://github.com/Annih)). +* Fallback to unencrypted data bag with `node['chef-vault']['databag_fallback']` ([issue #25](https://github.com/zuazo/ssl_certificate-cookbook/pull/25), thanks [Alexey Demidov](https://github.com/AlexeyDemidov)). +* Add custom file mode for key file ([issue #26](https://github.com/zuazo/ssl_certificate-cookbook/pull/26), thanks [Alexey Demidov](https://github.com/AlexeyDemidov)). +* Update RuboCop to `0.40`. + +Documentation: +* Improve `chain_name` parameter requirement documentation ([issue #24](https://github.com/zuazo/ssl_certificate-cookbook/issues/24), thanks [Alexey Demidov](https://github.com/AlexeyDemidov)). +* Improve TESTING documentation. +* README: Add license badge. + +Testing: +* Remove useless test attributes ([issue #16](https://github.com/zuazo/ssl_certificate-cookbook/pull/16), thanks [Baptiste Courtois](https://github.com/Annih)). +* Add a *.kitchen.cloud.yml* file. +* Fix unit tests. +* Disable some broken integration tests. +* CircleCI update: Use Ruby `2.3`. +* Berksfile: Add info link and avoid calculating the cookbook name. +* Gemfile: + * Update kitchen-ec2 to version 1. + * Update foodcritic to `6.3`. + ## v1.11.0 (2015-12-10) * Fix some RuboCop offenses. diff --git a/README.md b/README.md index 9ff4a95..020b315 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ SSL Certificate Cookbook [![Dependency Status](http://img.shields.io/gemnasium/zuazo/ssl_certificate-cookbook.svg?style=flat)](https://gemnasium.com/zuazo/ssl_certificate-cookbook) [![Code Climate](http://img.shields.io/codeclimate/github/zuazo/ssl_certificate-cookbook.svg?style=flat)](https://codeclimate.com/github/zuazo/ssl_certificate-cookbook) -[![Build Status](http://img.shields.io/travis/zuazo/ssl_certificate-cookbook.svg?style=flat)](https://travis-ci.org/zuazo/ssl_certificate-cookbook) +[![Build Status](http://img.shields.io/travis/zuazo/ssl_certificate-cookbook/1.12.0.svg?style=flat)](https://travis-ci.org/zuazo/ssl_certificate-cookbook) [![Circle CI](https://circleci.com/gh/zuazo/ssl_certificate-cookbook/tree/master.svg?style=shield)](https://circleci.com/gh/zuazo/ssl_certificate-cookbook/tree/master) The main purpose of this [Chef](https://www.chef.io/) cookbook is to make it easy for other cookbooks to support SSL. With the resource included, you will be able to manage certificates reading them from attributes, data bags or chef-vaults. Exposing its configuration through node attributes. diff --git a/metadata.rb b/metadata.rb index 3283e3c..7a1a18f 100644 --- a/metadata.rb +++ b/metadata.rb @@ -31,7 +31,7 @@ configuration through node attributes. EOS long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '1.12.0' # WiP +version '1.12.0' if respond_to?(:source_url) source_url "https://github.com/zuazo/#{name}-cookbook"