Skip to content

Commit

Permalink
Merge pull request #137 from HewlettPackard/Release_6-00
Browse files Browse the repository at this point in the history
release changes for 6.00
  • Loading branch information
VenkateshRavula authored Mar 5, 2021
2 parents 68e014b + a5c4950 commit ff3d4c4
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 6.0.0 (unreleased)
# 6.0.0
#### Notes
Extends support of the SDK to OneView REST API version 2600 (OneView v6.00) and ImageStreamer REST API version 2010 (I3S v6.00).

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
# built documents.
#
# The short X.Y version.
version = u'5.6.0'
version = u'6.0.0'
# The full version, including alpha/beta/rc tags.
release = u'5.6.0'
release = u'6.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
17 changes: 12 additions & 5 deletions examples/appliance_time_and_locale_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,16 @@
time_and_locale = time_and_locales.create(data=time_and_locale)
print("\n## Created appliance time and locale configurations successfully!")
pprint(time_and_locale.data)
# Note: Changing the locale will only be fully effective after resetting the appliance
# Note: Changing the time and locale will only be fully effective after resetting the appliance.
# Until then we cannot run the below create function

# Revert the changes made
time_and_locale = time_and_locales.create(data=options)
print("\n## Reverted appliance time and locale configurations successfully!")
pprint(time_and_locale.data)
'''
try:
# Revert the changes made
time_and_locale = time_and_locales.create(data=options)
print("\n## Reverted appliance time and locale configurations successfully!")
pprint(time_and_locale.data)
except HPEOneViewTaskError:
print("\n## Appliance will be rebooted to make the changes made previously.")
'''
4 changes: 2 additions & 2 deletions hpeOneView/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
standard_library.install_aliases()

__title__ = 'hpeOneView'
__version__ = '5.6.0'
__version__ = '6.0.0'
__copyright__ = '(C) Copyright (2012-2021) Hewlett Packard Enterprise Development LP'
__license__ = 'Apache'

###
# (C) Copyright [2020] Hewlett Packard Enterprise Development LP
# (C) Copyright [2021] Hewlett Packard Enterprise Development LP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
from setuptools import setup

setup(name='hpeOneView',
version='5.6.0',
version='6.0.0',
description='HPE OneView Python Library',
url='https://github.com/HewlettPackard/oneview-python',
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.6.0",
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v6.0.0",
author='Hewlett Packard Enterprise Development LP',
author_email='oneview-pythonsdk@hpe.com',
license='Apache',
Expand Down

0 comments on commit ff3d4c4

Please sign in to comment.