Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit bf0f94c

Browse files
authored
Merge pull request #372 from HewlettPackard/bumping-versions-for-release
Adding release documentation for API 600 support
2 parents 736e5ce + 31d13bf commit bf0f94c

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 4.5.0 (Unreleased)
1+
# 4.5.0
22
#### Notes
33
Added the capability to set a connection timeout when connecting to the HPE OneView Appliance
44

@@ -29,7 +29,7 @@ Extends support of the SDK to OneView Rest API version 600 (OneView v4.0).
2929
- Storage volume template
3030
- Switch
3131
- Switch type
32-
- Tasks
32+
- Task
3333
- Uplink set
3434

3535
# 4.4.0

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,12 @@ The current `default` HPE OneView version used by the Python SDK is `3.00`, API
200200
To use a different API, you must set the API version on the OneViewClient configuration, either using the JSON configuration:
201201

202202
```json
203-
"api_version": 500
203+
"api_version": 600
204204
```
205205
OR using the Environment variable:
206206

207207
```bash
208-
export ONEVIEWSDK_API_VERSION='500'
208+
export ONEVIEWSDK_API_VERSION='600'
209209
```
210210

211211
If this property is not specified, it will fall back to the ```300``` default value.
@@ -215,6 +215,7 @@ The API list is as follows:
215215
- HPE OneView 2.0 API version: `200`
216216
- HPE OneView 3.0 API version: `300`
217217
- HPE OneView 3.10 API version: `500`
218+
- HPE OneView 4.0 API version: `600`
218219

219220
### HPE Synergy Image Streamer
220221

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = u'4.4.0'
74+
version = u'4.5.0'
7575
# The full version, including alpha/beta/rc tags.
76-
release = u'4.4.0'
76+
release = u'4.5.0'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

endpoints-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
|<sub>/rest/logical-interconnect-groups/defaultSettings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
245245
|<sub>/rest/logical-interconnect-groups/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
246246
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
247-
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
247+
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
248248
|<sub>/rest/logical-interconnect-groups/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
249249
|<sub>/rest/logical-interconnect-groups/{id}/settings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
250250
| **Logical Interconnects** |

hpOneView/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
standard_library.install_aliases()
1515

1616
__title__ = 'hpOneView'
17-
__version__ = '4.4.0'
17+
__version__ = '4.5.0'
1818
__copyright__ = '(C) Copyright (2012-2017) Hewlett Packard Enterprise Development LP'
1919
__license__ = 'MIT'
2020

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
from setuptools import setup
2727

2828
setup(name='hpOneView',
29-
version='4.4.0',
29+
version='4.5.0',
3030
description='HPE OneView Python Library',
3131
url='https://github.com/HewlettPackard/python-hpOneView',
32-
download_url="https://github.com/HewlettPackard/python-hpOneView/tarball/v4.4.0",
32+
download_url="https://github.com/HewlettPackard/python-hpOneView/tarball/v4.5.0",
3333
author='Hewlett Packard Enterprise Development LP',
3434
author_email='[email protected]',
3535
license='MIT',

0 commit comments

Comments
 (0)