varsion 0.0.11

This commit is contained in:
dima
2013-10-20 14:07:37 +02:00
parent 55e31c16df
commit 85910255a7
3 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,12 @@
# 0.0.11 (Oct. 20, 2013)
* BUG FIX close #70 undefine machine id should be after all operations
* BUG FIX close #76 correct uri for different virtualizations
* BUG FIX close #72 possibility to give VMs a name
* Delete any snapshots when destroying domain (by Brian Pitts <brian@polibyte.com>)
* Add reload command (by Brian Pitts <brian@polibyte.com>)
* Update README (by <brett@apache.org>)
# 0.0.10 (Oct. 7, 2013)
* Delete files from destination to avoid confusions(by <skullzeek@gmail.com>)

View File

@@ -4,13 +4,13 @@ This is a [Vagrant](http://www.vagrantup.com) 1.3+ plugin that adds an
[Libvirt](http://libvirt.org) provider to Vagrant, allowing Vagrant to
control and provision machines via Libvirt toolkit.
**Note:** Actual version (0.0.10) is still a development one. Feedback is
**Note:** Actual version (0.0.11) is still a development one. Feedback is
welcome and can help a lot :-)
## Features (Version 0.0.10)
## Features (Version 0.0.11)
* Controll local Libvirt hypervisors.
* Vagrant `up`, `destroy`, `suspend`, `resume`, `halt`, `ssh` and `provision` commands.
* Vagrant `up`, `destroy`, `suspend`, `resume`, `halt`, `ssh`, `reload` and `provision` commands.
* Upload box image (qcow2 format) to Libvirt storage pool.
* Create volume as COW diff image for domains.
* Create private networks.

View File

@@ -1,5 +1,5 @@
module VagrantPlugins
module ProviderLibvirt
VERSION = '0.0.10'
VERSION = '0.0.11'
end
end