diff --git a/CHANGELOG.md b/CHANGELOG.md index 3443b9c..4a26e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [1.1.0](https://github.com/fgrehm/vagrant-cachier/compare/v1.0.0...v1.1.0) (Oct 15, 2014) + +FEATURES: + + - [Bower bucket](http://fgrehm.viewdocs.io/vagrant-cachier/buckets/bower) [[GH-125]] + +[GH-125]: https://github.com/fgrehm/vagrant-cachier/pull/125 + +IMPROVEMENTS: + + - Resolve $HOME even if VM spits bogus new lines [[GH-122]] / [[GH-124]] + +[GH-122]: https://github.com/fgrehm/vagrant-cachier/issues/122 +[GH-124]: https://github.com/fgrehm/vagrant-cachier/pull/124 + ## [1.0.0](https://github.com/fgrehm/vagrant-cachier/compare/v0.9.0...v1.0.0) (Sep 22, 2014) Public API is considered stable. @@ -5,8 +20,6 @@ Public API is considered stable. ## [0.9.0](https://github.com/fgrehm/vagrant-cachier/compare/v0.8.0...v0.9.0) (Aug 9, 2014) -**This is considered a release candidate for a 1.0 that will be cut within ~2 weeks if no major issues are reported** - FEATURES: - Suport for caching packages for Docker containers that doesn't have a base box specified [[GH-116]] diff --git a/Gemfile.lock b/Gemfile.lock index 0ffe4f6..9f3d727 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -33,7 +33,7 @@ GIT PATH remote: . specs: - vagrant-cachier (1.0.0) + vagrant-cachier (1.1.0) GEM remote: https://rubygems.org/ diff --git a/lib/vagrant-cachier/version.rb b/lib/vagrant-cachier/version.rb index 95e3086..b1dc47a 100644 --- a/lib/vagrant-cachier/version.rb +++ b/lib/vagrant-cachier/version.rb @@ -1,5 +1,5 @@ module VagrantPlugins module Cachier - VERSION = "1.0.0" + VERSION = "1.1.0" end end