Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #76 from SethMichaelLarson/tag-1.1.0
Browse files Browse the repository at this point in the history
Prepare for 1.1.0 release
  • Loading branch information
SethMichaelLarson authored Jun 2, 2017
2 parents 7d6bd43 + d522781 commit 63dd96e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

master
version 1.1.0 (02/06/2017)

* IGuest.create_session() now raises a more descriptive error if
not able to connect with a zero-length password. (@SethMichaelLarson PR #70)
Expand All @@ -11,14 +11,14 @@ master
* Fix error caused by attempting to set any attribute in the COM interface
using setattr raising an error. (Reported by @josepegerent, patch by @SethMichaelLarson PR #74)

version 1.0.0
version 1.0.0 (18/01/2017)

* Support for 5.0.x VirtualBox.
* Introduce Major.Minor virtualbox build version assertion when creating a VirtualBox
instance.
* Fix to IMachine.export_to (contribution from @z00m1n).

version 0.2.2
version 0.2.2 (05/08/2015)

* Cleanup managers at exit (reported by @jiml521).
* Add three time check for attribute in xpcom interface object before failing (reported
Expand All @@ -32,12 +32,12 @@ version 0.2.0
* Bug fixes in IMachine (reported by @danikdanik).
* IHost API issue workaround by @wndhydrnt.

version 0.1.6
version 0.1.6 (01/08/2014)

* Bug fixes (compatability issue with py26 and virtual keyboard).
* Thanks to contributions by @D4rkC4t and @Guilherme Moro.

version 0.1.5
version 0.1.5 (11/05/2014)

* Improve error handling and documentation of error types.
* Appliance extension.
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = lint docs
envlist = lint, docs

[testenv:lint]
commands =
Expand Down
1 change: 1 addition & 0 deletions virtualbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,3 +233,4 @@ def __init__(self, url='http://localhost/', user='', password=''):
from virtualbox import pool # noqa: F401
from virtualbox import events # noqa: F401
from virtualbox import version # noqa: F401
from virtualbox.version import __version__ # noqa: F401
2 changes: 1 addition & 1 deletion virtualbox/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.1.0"

0 comments on commit 63dd96e

Please sign in to comment.