Skip to content

Commit

Permalink
Merge pull request #95 from HewlettPackard/Releasev5.4.0
Browse files Browse the repository at this point in the history
Changes for Releasev5.4.0
  • Loading branch information
chebroluharika authored Sep 11, 2020
2 parents 53ce066 + fc7734b commit d785e6c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 5.4.0(unreleased)
# 5.4.0
#### Notes
Extends support of the SDK to OneView REST API version 2000 (OneView v5.40).

Expand All @@ -16,6 +16,7 @@ Extends support of the SDK to OneView REST API version 2000 (OneView v5.40).
#### Major changes
Refactored base class to take default API version as per provided Oneview appliance.
Removed provision of "type" field as those are optional from API1600.
Added support for automatic publish of Docker Image when there is a new release in GitHub

#### Features supported with the current release
- Appliance SNMPv1 Trap Destinations
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN DEBIAN_FRONTEND=noninteractive \

# install dependencies to run examples
RUN python -m pip install --upgrade pip
RUN pip install hpOneView
RUN pip install hpeOneView

ADD . oneview/

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Please refer to [notes](https://github.com/HewlettPackard/oneview-python/blob/ma

## Getting Started

HPE OneView SDK for Python can be installed from [Source](https://github.com/HewlettPackard/oneview-python.git) , [Pypi](https://pypi.org/) and [Docker](https://www.docker.com/) container installation methods.
HPE OneView SDK for Python can be installed from [Source](https://github.com/HewlettPackard/oneview-python.git) , [Pypi](https://pypi.org/) and [Docker](https://hub.docker.com/) container installation methods.

We also publish oneview-python SDK docker images to [Docker Hub](https://hub.docker.com/r/hewlettpackardenterprise/hpe-oneview-sdk-for-python)
that comes with an installation of oneview-python SDK.
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.3.0'
version = u'5.4.0'
# The full version, including alpha/beta/rc tags.
release = u'5.3.0'
release = u'5.4.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 hpeOneView/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
standard_library.install_aliases()

__title__ = 'hpeOneView'
__version__ = '5.3.0'
__version__ = '5.4.0'
__copyright__ = '(C) Copyright (2012-2020) Hewlett Packard Enterprise Development LP'
__license__ = 'Apache'

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.3.0',
version='5.4.0',
description='HPE OneView Python Library',
url='https://github.com/HewlettPackard/oneview-python',
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.3.0",
download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.4.0",
author='Hewlett Packard Enterprise Development LP',
author_email='[email protected]',
license='Apache',
Expand Down

0 comments on commit d785e6c

Please sign in to comment.