From df806604d65ff5ea8eaf49030b1aa507e28bc350 Mon Sep 17 00:00:00 2001 From: Tim Heckman Date: Mon, 20 Feb 2017 12:00:47 -0800 Subject: [PATCH] v0.7.0 version bump; update CHANGELOG.md This increases the version for `chef-user` to `0.7.0` to prepare for release. In addition to the version bump, fill-in some release information in to the `CHANGELOG.md` file. --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ metadata.rb | 2 +- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d124df5..c13f9bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,42 @@ +## 0.7.0 / 2017-02-20 + +### Improvements + +* Support providing an `ssh_keypair` attribute` to the `user_account` LWRP; this allows you to deploy the user's key using Chef ([@chr4][]) +* Remove cases where we were cloning resources to remove the relevant deprecation warnings ([@chasebolt][]) + +## 0.6.0 / 2016-11-19 + +### Improvements + +* changes to remove Chef 13 deprecation warnings by [@jeunito][]: + * use `node['platform']` instead of `platform` + * use `manage_home` and `non_unqiue` `attributes for the `user` LWRP instead of the `supports` Hash + +## 0.5.1 / 2016-11-04 + +### Bug Fixes + +* Fix incorrect `source_url` value in the `metadata.rb` file + +## 0.5.0 / 2016-11-04 + +### Bug Fixes + +* Fix an error in the LWRP when a --why-run invocation is invoked before the user has been created (PR #89 by [@theckman][]) + +### Improvements + +* Add a groups resource to the LWRP to allow the user to be added to additional groups upon creation (PR #96 by [@acqant][]) +* Add issues_url and source_url to the metadata file +* Fix tests and dependencies to work with Ruby 2.1.4 (version shipped with Chef 12.1.0) + + +## 0.3.0 - 0.4.2 (Proper Release Hiatus) +While there were version bumps of the `metadata.rb` file during this period, there were +no official releases. The changes weren't clearly documented. We should go back and fill +in the information about the changes in this period. + ## 0.3.0 / 2012-07-24 ### Improvements diff --git a/metadata.rb b/metadata.rb index e255a2f..fd6369c 100644 --- a/metadata.rb +++ b/metadata.rb @@ -4,7 +4,7 @@ license 'Apache 2.0' description 'A convenient Chef LWRP to manage user accounts and SSH keys (this is not the opscode users cookbook)' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '0.6.0' +version '0.7.0' issues_url 'https://github.com/fnichol/chef-user/issues' source_url 'https://github.com/fnichol/chef-user'