diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a26e1b..7ee4b83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## [1.2.0](https://github.com/fgrehm/vagrant-cachier/compare/v1.1.0...v1.2.0) (Jan 14, 2015) + +FEATURES: + + - [Chef Gems bucket](http://fgrehm.viewdocs.io/vagrant-cachier/buckets/chef_rubygems) [[GH-129]] + +[GH-129]: https://github.com/fgrehm/vagrant-cachier/pull/129 + +BUG FIXES: + + - Fix provisioner resolution on Vagrant 1.7+ [[GH-133]] / [[GH-134]] + - Do not modify Vagrant core object, preventing unpredictable behavior [[GH-135]] + +[GH-133]: https://github.com/fgrehm/vagrant-cachier/issues/133 +[GH-134]: https://github.com/fgrehm/vagrant-cachier/pull/134 +[GH-135]: https://github.com/fgrehm/vagrant-cachier/pull/135 + + ## [1.1.0](https://github.com/fgrehm/vagrant-cachier/compare/v1.0.0...v1.1.0) (Oct 15, 2014) FEATURES: diff --git a/Gemfile.lock b/Gemfile.lock index e53bf98..1b9e670 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -35,7 +35,7 @@ GIT PATH remote: . specs: - vagrant-cachier (1.1.0) + vagrant-cachier (1.2.0) GEM remote: https://rubygems.org/ diff --git a/docs/template.html b/docs/template.html index 1f4e7af..06b1eca 100644 --- a/docs/template.html +++ b/docs/template.html @@ -87,6 +87,7 @@
  • apt-lists
  • apt-cacher
  • Chef
  • +
  • Chef Gems
  • Composer
  • Bower
  • Pacman
  • diff --git a/lib/vagrant-cachier/version.rb b/lib/vagrant-cachier/version.rb index b1dc47a..c7f3193 100644 --- a/lib/vagrant-cachier/version.rb +++ b/lib/vagrant-cachier/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Cachier - VERSION = "1.1.0" + VERSION = "1.2.0" end end