From 44d4dd9f82dbdd449a7c92fb71f64a9fc80f62da Mon Sep 17 00:00:00 2001 From: VenkateshRavula Date: Thu, 16 Apr 2020 18:03:55 +0530 Subject: [PATCH] Updated SDK version for PR release --- CHANGELOG.md | 2 +- docs/source/conf.py | 6 +++--- hpOneView/__init__.py | 6 +++--- setup.py | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f0ddec31..e675b3cc2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 5.1.0 (unreleased version) +# 5.1.0 #### Notes Extends support of the SDK to OneView REST API version 800, 1000 and 1200. diff --git a/docs/source/conf.py b/docs/source/conf.py index 2fcf88933..777401545 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,7 +63,7 @@ # General information about the project. project = u'HPE OneView Python SDK' -copyright = u'(C) 2019 Hewlett Packard Enterprise' +copyright = u'(C) 2020 Hewlett Packard Enterprise' author = u'Hewlett Packard Enterprise' # The version info for the project you're documenting, acts as replacement for @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = u'5.0.0' +version = u'5.1.0' # The full version, including alpha/beta/rc tags. -release = u'5.0.0' +release = u'5.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/hpOneView/__init__.py b/hpOneView/__init__.py index febfa31a0..61acfdad2 100644 --- a/hpOneView/__init__.py +++ b/hpOneView/__init__.py @@ -14,12 +14,12 @@ standard_library.install_aliases() __title__ = 'hpOneView' -__version__ = '5.0.0' -__copyright__ = '(C) Copyright (2012-2019) Hewlett Packard Enterprise Development LP' +__version__ = '5.1.0' +__copyright__ = '(C) Copyright (2012-2020) Hewlett Packard Enterprise Development LP' __license__ = 'Apache' ### -# (C) Copyright [2019] Hewlett Packard Enterprise Development LP +# (C) Copyright [2020] 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. diff --git a/setup.py b/setup.py index 9a971e7ea..79ea06400 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ### -# (C) Copyright [2019] Hewlett Packard Enterprise Development LP +# (C) Copyright [2020] 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. @@ -20,10 +20,10 @@ from setuptools import setup setup(name='hpOneView', - version='5.0.0', + version='5.1.0', description='HPE OneView Python Library', url='https://github.com/HewlettPackard/oneview-python', - download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.0.0", + download_url="https://github.com/HewlettPackard/oneview-python/tarball/v5.1.0", author='Hewlett Packard Enterprise Development LP', author_email='oneview-pythonsdk@hpe.com', license='Apache',