From ab2bbdc17cb7268048ce6461755fc94cec4ad1cd Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 24 Jul 2020 15:33:31 -0400 Subject: [PATCH] 1.1.4 Versioning --- CHANGELOG.md | 4 ++++ redfishtoollib/redfishtoolTransport.py | 4 ++-- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d69f5e0..fb3d33a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [1.1.4] - 2020-07-24 +- Renamed the package to not conflict with the name of the script +- Added additional redfishtool.py script for Windows compatibility + ## [1.1.3] - 2020-05-01 - Added inventory and sensor options diff --git a/redfishtoollib/redfishtoolTransport.py b/redfishtoollib/redfishtoolTransport.py index 7c4286f..daad498 100644 --- a/redfishtoollib/redfishtoolTransport.py +++ b/redfishtoollib/redfishtoolTransport.py @@ -60,8 +60,8 @@ class RfTransport(): def __init__(self): # constant parameters-- these dont change and are not updated self.program="redfishtool" # program name (in case we want to change it) - self.version="1.1.3" # this redfishtool version - self.releaseDate="05/01/2020" # release date for this version of redfishtool + self.version="1.1.4" # this redfishtool version + self.releaseDate="07/24/2020" # release date for this version of redfishtool self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool self.magic="12345" # used for debug to test for a known parameter in this object self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data diff --git a/setup.py b/setup.py index c96604b..46fc0f1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ long_description = f.read() setup(name='redfishtool', - version='1.1.3', + version='1.1.4', description='Redfishtool package and command-line client', long_description=long_description, long_description_content_type='text/markdown', @@ -21,7 +21,7 @@ ], keywords='Redfish', url='https://github.com/DMTF/Redfishtool', - download_url='https://github.com/DMTF/Redfishtool/archive/1.0.5.tar.gz', + download_url='https://github.com/DMTF/Redfishtool/archive/1.1.4.tar.gz', packages=['redfishtoollib'], scripts=['scripts/redfishtool', 'scripts/redfishtool.py'], install_requires=['python-dateutil', 'requests']