From 168e3114e7220d6cb6a950dd6ff7396a024b54f9 Mon Sep 17 00:00:00 2001 From: sijeesh Date: Mon, 15 Apr 2019 16:42:28 +0530 Subject: [PATCH] Updated documents for new release 5.0.0 --- CHANGELOG.md | 11 +++++++---- docs/source/conf.py | 4 ++-- hpOneView/__init__.py | 4 ++-- setup.py | 6 +++--- 4 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cff9119..9a3b29e3 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ -# 5.0.0 (Unreleased) +# 5.0.0 #### Notes Extends support of the SDK to OneView Rest API version 800 (OneView v4.1). -Designed a base class to keep all the common operations available for the resources. -Introduced mixin classes to include the optional features of the resources. -Resource data will be available with the resource object. This enhancement helps to + +#### Major changes + 1. Extended support of SDK to API800. + 2. Designed a base class to keep all the common operations available for the resources. + 3. Introduced mixin classes to include the optional features of the resources. + 4. Resource data will be available with the resource object. This enhancement helps to add helper methods and avoid passing uri/name to call the resource methods. #### Breaking diff --git a/docs/source/conf.py b/docs/source/conf.py index 0f297fcc..0e8648a3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -71,9 +71,9 @@ # built documents. # # The short X.Y version. -version = u'4.8.0' +version = u'5.0.0' # The full version, including alpha/beta/rc tags. -release = u'4.8.0' +release = u'5.0.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 45b1a734..725af001 100644 --- a/hpOneView/__init__.py +++ b/hpOneView/__init__.py @@ -14,8 +14,8 @@ standard_library.install_aliases() __title__ = 'hpOneView' -__version__ = '4.8.0' -__copyright__ = '(C) Copyright (2012-2017) Hewlett Packard Enterprise Development LP' +__version__ = '5.0.0' +__copyright__ = '(C) Copyright (2012-2019) Hewlett Packard Enterprise Development LP' __license__ = 'MIT' ### diff --git a/setup.py b/setup.py index 0206bf55..75ac6f7e 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- ### -# (C) Copyright (2012-2017) Hewlett Packard Enterprise Development LP +# (C) Copyright (2012-2019) Hewlett Packard Enterprise Development LP # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -26,10 +26,10 @@ from setuptools import setup setup(name='hpOneView', - version='4.8.0', + version='5.0.0', description='HPE OneView Python Library', url='https://github.com/HewlettPackard/python-hpOneView', - download_url="https://github.com/HewlettPackard/python-hpOneView/tarball/v4.8.0", + download_url="https://github.com/HewlettPackard/python-hpOneView/tarball/v5.0.0", author='Hewlett Packard Enterprise Development LP', author_email='oneview-pythonsdk@hpe.com', license='MIT',