This commit is contained in:
Fabio Rehm 2014-10-15 01:04:37 -03:00
parent 186d453621
commit 71e210f683
3 changed files with 14 additions and 2 deletions

View file

@ -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) ## [1.0.0](https://github.com/fgrehm/vagrant-lxc/compare/v1.0.0.alpha.3...v1.0.0) (Sep 23, 2014)
DEPRECATIONS: DEPRECATIONS:

View file

@ -40,7 +40,7 @@ GIT
PATH PATH
remote: . remote: .
specs: specs:
vagrant-lxc (1.0.0) vagrant-lxc (1.0.1)
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/

View file

@ -1,5 +1,5 @@
module Vagrant module Vagrant
module LXC module LXC
VERSION = "1.0.0" VERSION = "1.0.1"
end end
end end