From f402dc693762d5ee0f340617e3938ecf647460f9 Mon Sep 17 00:00:00 2001 From: Jason Antman Date: Sat, 10 Jan 2015 14:56:44 -0500 Subject: [PATCH] Fixes #3 --- CHANGES.md | 3 ++- README.md | 16 ++++++++++++---- lib/vagrant-r10k/version.rb | 2 +- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index d6a91de..10584e1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,7 +5,8 @@ * Add unit tests for modulegetter and config. * Readme updates. * Add changelog. -* Fix bug in newer Vagrant where provider does not have .name +* Fix bug in newer Vagrant where provider does not have .name ([issue #3](https://github.com/jantman/vagrant-r10k/issues/3)) +* Update README.md ## 0.1.1 2014-08-07 Jason Antman diff --git a/README.md b/README.md index fd55491..e5801d3 100644 --- a/README.md +++ b/README.md @@ -99,10 +99,9 @@ The configuration for r10k and puppet would look like: 1. Fork it ( https://github.com/jantman/vagrant-r10k/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) -4. Increment the version number in `lib/vagrant-r10k/version.rb` -5. Add yourself to the "Contributors" list below. -6. Push to the branch (`git push origin my-new-feature`) -7. Create a new Pull Request +4. Add yourself to the "Contributors" list below. +5. Push to the branch (`git push origin my-new-feature`) +6. Create a new Pull Request ### Contributors @@ -129,6 +128,15 @@ to the above command). Exporting ``VAGRANT_LOG=debug`` will also turn on debug-level logging for r10k. +## Releasing + +1. Ensure all tests are passing, coverage is acceptable, etc. +2. Increment the version number in ``lib/vagrant-r10k/version.rb`` +3. Update CHANGES.md +4. Push those changes to origin. +5. ``bundle exec rake build`` +6. ``bundle exec rake release`` + ## Acknowlegements Thanks to the following people: diff --git a/lib/vagrant-r10k/version.rb b/lib/vagrant-r10k/version.rb index b15c358..9a81fc2 100644 --- a/lib/vagrant-r10k/version.rb +++ b/lib/vagrant-r10k/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module R10k - VERSION = "0.1.1" + VERSION = "0.2.0" end end