Skip to content

Commit

Permalink
PReparing version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
carletes committed Aug 2, 2014
1 parent 3ed8381 commit 59b1d46
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,38 @@
Changes in the development version
==================================

No changes.


Changes in version 0.3.0
========================

Backwards-incompatible changes
------------------------------

* Nodes have now an ``id`` field, matching the VirtualBox UUID.
You must recreate all the nodes defined in your ``~/.libcloud-vagrant``
catalogue.


Backwards-compatible changes
----------------------------

* New command-line tool ``libcloud-vagrant`` to do simple operations
with Vagrant nodes created by Libcloud.

* Interactions with Vagrant and Virtualbox are protected by a
filesystem-based lock.

* Unit tests use now a free 24-bit network in the 192.168/16 range,
instead of using hard-coded ones.

* The host network interfaces of public networks are destroyed when the
Vagrant network objects are destroyed.

* ``libcloud-vagrant`` now makes fewer calls to the Virtualbox
``VBoxManage`` command.


Changes in version 0.2.0
========================
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ operations with Vagrant nodes created by Libcloud::
environment.
$

``libcloud-vagrant`` is *not* thread- or multiprocess-safe. Interactions
with Vagrant and with the Virtualbox command-line tools are protected
with a filesystem-based lock, which (hopefully) serializes things, so
even if they worked, concurrent operations would not give you much
benefit.


Requirements
------------
Expand Down
2 changes: 1 addition & 1 deletion libcloudvagrant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"ca-bundle.crt"))


__version__ = "0.2.0"
__version__ = "0.3.0"


def test():
Expand Down

0 comments on commit 59b1d46

Please sign in to comment.