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

Commit d522781

Browse files
committed
Prepare for 1.1.0 release
1 parent 7d6bd43 commit d522781

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGES.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
master
4+
version 1.1.0 (02/06/2017)
55

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

14-
version 1.0.0
14+
version 1.0.0 (18/01/2017)
1515

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

21-
version 0.2.2
21+
version 0.2.2 (05/08/2015)
2222

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

35-
version 0.1.6
35+
version 0.1.6 (01/08/2014)
3636

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

40-
version 0.1.5
40+
version 0.1.5 (11/05/2014)
4141

4242
* Improve error handling and documentation of error types.
4343
* Appliance extension.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint docs
2+
envlist = lint, docs
33

44
[testenv:lint]
55
commands =

virtualbox/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,4 @@ def __init__(self, url='http://localhost/', user='', password=''):
233233
from virtualbox import pool # noqa: F401
234234
from virtualbox import events # noqa: F401
235235
from virtualbox import version # noqa: F401
236+
from virtualbox.version import __version__ # noqa: F401

virtualbox/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.1.0"

0 commit comments

Comments
 (0)