diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f1fb3..4a10446 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,26 @@ ramdisk CHANGELOG This file is used to list changes made in each version of the `ramdisk` cookbook. +## v0.2.0 (2015-08-26) + +* `LwrpHelpers`: improve similar code using delegation. +* Gemfile: Update RuboCop to `0.33.0` ([issue #1](https://github.com/zuazo/ramdisk-cookbook/pull/1), thanks [Hendrik Bergunde](https://github.com/hendrikb)). +* metadata: Add `source_url` and `issues_url`. + +* Documentation: + * Update chef links to use *chef.io* domain. + * Update contact information and links after migration. + * README: Put the cookbook name in the title. + * Document the Rakefile. + * Move the ChefSpec matchers documentation to the README. + +* Testing: + * Travis: Run tests against Chef 11 and Chef 12. + * Rakfile: Add clean task. + * Fix ChefSpec tests. + * Fix integration tests for Ubuntu `15.04` and OpenSUSE. + * Move ChefSpec tests to *test/unit*. + ## v0.1.0 (2014-11-24) -* Initial release of `ramdisk` +* Initial release of `ramdisk`. diff --git a/README.md b/README.md index fb8213b..4a3d512 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ Ramdisk Cookbook [![Cookbook Version](https://img.shields.io/cookbook/v/ramdisk.svg?style=flat)](https://supermarket.chef.io/cookbooks/ramdisk) [![Dependency Status](http://img.shields.io/gemnasium/zuazo/ramdisk-cookbook.svg?style=flat)](https://gemnasium.com/zuazo/ramdisk-cookbook) [![Code Climate](http://img.shields.io/codeclimate/github/zuazo/ramdisk-cookbook.svg?style=flat)](https://codeclimate.com/github/zuazo/ramdisk-cookbook) -[![Build Status](http://img.shields.io/travis/zuazo/ramdisk-cookbook.svg?style=flat)](https://travis-ci.org/zuazo/ramdisk-cookbook) -[![Coverage Status](http://img.shields.io/coveralls/zuazo/ramdisk-cookbook.svg?style=flat)](https://coveralls.io/r/zuazo/ramdisk-cookbook?branch=master) +[![Build Status](http://img.shields.io/travis/zuazo/ramdisk-cookbook/0.2.0.svg?style=flat)](https://travis-ci.org/zuazo/ramdisk-cookbook) +[![Coverage Status](http://img.shields.io/coveralls/zuazo/ramdisk-cookbook/0.2.0.svg?style=flat)](https://coveralls.io/r/zuazo/ramdisk-cookbook?/Coverage Status](http://img.shields.io/coveralls/zuazo/ramdisk-cookbook/0.2.0.svg?style=flat)](https://coveralls.io/r/zuazo/ramdisk-cookbook?branch=0.2.0) -This cookbook manages tmpfs RAM disks with Chef. +This cookbook manages tmpfs RAM disks with [Chef](https://www.chef.io/). Requirements ============ @@ -168,6 +168,7 @@ License and Author | | | |:---------------------|:-----------------------------------------| | **Author:** | [Xabier de Zuazo](https://github.com/zuazo) () +| **Contributor:** | [Hendrik Bergunde](https://github.com/hendrikb) | **Copyright:** | Copyright (c) 2015, Xabier de Zuazo | **Copyright:** | Copyright (c) 2014, Onddo Labs, SL. | **License:** | Apache License, Version 2.0 diff --git a/metadata.rb b/metadata.rb index c4330c5..55b47c7 100644 --- a/metadata.rb +++ b/metadata.rb @@ -24,7 +24,7 @@ license 'Apache 2.0' description 'Manage tmpfs RAM disks with Chef' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '0.2.0' # WiP +version '0.2.0' if respond_to?(:source_url) source_url "https://github.com/zuazo/#{name}-cookbook"