diff --git a/CHANGELOG.md b/CHANGELOG.md index c74bb7b..9ecd852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.0.1](https://github.com/fgrehm/vagrant-lxc/compare/v1.0.0...v1.0.1) (Oct 15, 2014) + +IMPROVEMENTS: + + - Avoid lock race condition when fetching container's IP [[GH-318]] and SSH execution [[GH-321]] + - Support for custom containers storage path by reading `lxc.lxcpath` [[GH-317]] + + +[GH-317]: https://github.com/fgrehm/vagrant-lxc/pull/317 +[GH-318]: https://github.com/fgrehm/vagrant-lxc/pull/318 +[GH-321]: https://github.com/fgrehm/vagrant-lxc/issues/321 + ## [1.0.0](https://github.com/fgrehm/vagrant-lxc/compare/v1.0.0.alpha.3...v1.0.0) (Sep 23, 2014) DEPRECATIONS: diff --git a/Gemfile.lock b/Gemfile.lock index c5d1787..9a672c9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -40,7 +40,7 @@ GIT PATH remote: . specs: - vagrant-lxc (1.0.0) + vagrant-lxc (1.0.1) GEM remote: https://rubygems.org/ diff --git a/lib/vagrant-lxc/version.rb b/lib/vagrant-lxc/version.rb index bc5b2e8..fb8107a 100644 --- a/lib/vagrant-lxc/version.rb +++ b/lib/vagrant-lxc/version.rb @@ -1,5 +1,5 @@ module Vagrant module LXC - VERSION = "1.0.0" + VERSION = "1.0.1" end end