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

Commit

Permalink
Merge pull request #372 from HewlettPackard/bumping-versions-for-release
Browse files Browse the repository at this point in the history
Adding release documentation for API 600 support
  • Loading branch information
soodpr authored Mar 6, 2018
2 parents 736e5ce + 31d13bf commit bf0f94c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 4.5.0 (Unreleased)
# 4.5.0
#### Notes
Added the capability to set a connection timeout when connecting to the HPE OneView Appliance

Expand Down Expand Up @@ -29,7 +29,7 @@ Extends support of the SDK to OneView Rest API version 600 (OneView v4.0).
- Storage volume template
- Switch
- Switch type
- Tasks
- Task
- Uplink set

# 4.4.0
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,12 @@ The current `default` HPE OneView version used by the Python SDK is `3.00`, API
To use a different API, you must set the API version on the OneViewClient configuration, either using the JSON configuration:

```json
"api_version": 500
"api_version": 600
```
OR using the Environment variable:

```bash
export ONEVIEWSDK_API_VERSION='500'
export ONEVIEWSDK_API_VERSION='600'
```

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

### HPE Synergy Image Streamer

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'4.4.0'
version = u'4.5.0'
# The full version, including alpha/beta/rc tags.
release = u'4.4.0'
release = u'4.5.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion endpoints-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
|<sub>/rest/logical-interconnect-groups/defaultSettings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/logical-interconnect-groups/{id}</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PUT | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/logical-interconnect-groups/{id}</sub> | PATCH | :heavy_minus_sign: | :white_check_mark: | :white_check_mark: | :heavy_minus_sign: |
|<sub>/rest/logical-interconnect-groups/{id}</sub> | DELETE | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|<sub>/rest/logical-interconnect-groups/{id}/settings</sub> | GET | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| **Logical Interconnects** |
Expand Down
2 changes: 1 addition & 1 deletion hpOneView/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
standard_library.install_aliases()

__title__ = 'hpOneView'
__version__ = '4.4.0'
__version__ = '4.5.0'
__copyright__ = '(C) Copyright (2012-2017) Hewlett Packard Enterprise Development LP'
__license__ = 'MIT'

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
from setuptools import setup

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

0 comments on commit bf0f94c

Please sign in to comment.