Skip to content

Commit a01181b

Browse files
committed
release: version 0.2.0
1 parent 8d231e7 commit a01181b

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

CHANGES

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
Roadmap for 0.1.9
2-
- Add vms_from_folder method in VIServer
1+
New in 0.2.0:
2+
- Forked to GitHub by Shao-Chung Chen
3+
- Added VIDatastore class to manage files/folders on datastores
4+
- Added vms_from_folder(), get_datastore_by_name() methods to VIServer
5+
- Added get_directory(), create_screenshot(), get_screenshot() methods to VIVirtualMachine
6+
- Added "interactive session" option to VIVirtualMachine.login_in_guest()
7+
- Added "synchronous run" option to VIVirtualMachine.start_process()
38

4-
New in for 0.1.8
9+
New in 0.1.8:
510
- Added VIManagedEntity class extended by VIVirtualMachine
611
- Added Rename, Reload, and Destroy methods to VIManagedEntity
712
- Fix #26: VIVirtualMachine.send_file() gratuitiosly overwrites urllib2's installed default opener
813
- Recurse through datastores vm property in retrieve_properties_traversal
914
- Additional 'disks' parameter in VIVirtualMachine.relocate() method.
1015
- Support to SDK 5.1
1116

12-
New in 0.1.7
13-
17+
New in 0.1.7:
1418
- Advanced filters parameter in VIServer.get_registered_vms
1519
- Set connection sockets timeout (works only since python 2.6)
1620
- added support for historical metrics in performance manager
@@ -23,8 +27,7 @@ New in 0.1.7
2327
- Added relocate() method to VIVirtualMachine (by Chris Dituri)
2428
- Several fixes
2529

26-
New in 0.1.6
27-
30+
New in 0.1.6:
2831
- Added methods to VITask: get_result, get_progress, cancel
2932
- Added clone method to VIVirtualMachine
3033
- Added get_question method to VM (returns object with question info and answer method)
@@ -36,7 +39,6 @@ New in 0.1.6
3639
- Multithread support
3740

3841
New in 0.1.5:
39-
4042
- suppor vSphere 5.0
4143
- added suspend method to VM
4244
- added quick vm properties for disks and files info

pysphere/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Do not edit. Auto generated
2-
version = (0, 1, 8)
1+
# Do not edit. Auto generated
2+
version = (0, 2, 0)

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
except:
77
from distutils.core import setup
88

9-
VERSION = (0, 1, 8)
9+
VERSION = (0, 2, 0)
1010

1111
if __name__ == "__main__":
1212
try:
@@ -32,7 +32,7 @@
3232
description="VMware vSphere Web Service client in Python",
3333
author="Sebastian Tello <[email protected]>, Shao-Chung Chen <[email protected]>",
3434
url="https://github.com/dannvix/pySphere",
35-
download_url="https://github.com/dannvix/pySphere/archive/v0.1.8.zip",
35+
download_url="https://github.com/dannvix/pySphere/archive/v0.2.0.zip",
3636
keywords = ["vSphere", "Virtual", "vmware", "ESX", "ESXi", "VirtualCenter", "SDK", "API"],
3737
classifiers = [
3838
"Programming Language :: Python",
@@ -57,4 +57,4 @@
5757
"Topic :: Utilities"
5858
],
5959
long_description=long_desc
60-
)
60+
)

0 commit comments

Comments
 (0)