From 9995d6eae41f41b94ee25c3b523c0ba66dd6bcda Mon Sep 17 00:00:00 2001 From: Mike Raineri Date: Fri, 12 Jul 2019 08:57:50 -0400 Subject: [PATCH] 1.0.9 Versioning --- CHANGELOG.md | 3 +++ README.md | 3 ++- redfishtool/redfishtoolTransport.py | 4 ++-- setup.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab64bf..67b89ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [1.0.9] - 2019-07-12 +- Added the ability to get credentials from the config file rather than specifying them on the command line + ## [1.0.8] - 2018-11-30 - Made the "One" option enabled by default for Systems, Managers, and Chassis collections diff --git a/README.md b/README.md index b1c6f84..9a8b022 100644 --- a/README.md +++ b/README.md @@ -594,4 +594,5 @@ In order for executables to resolve if using Windows, ensure both the "Python" a 4. Push changes to Github 5. Create a new release in Github 6. Push the new tool version to pypi.org - * `python setup.py sdist upload -r pypi` + * `python setup.py sdist` + * `twine upload dist/*` diff --git a/redfishtool/redfishtoolTransport.py b/redfishtool/redfishtoolTransport.py index 017fa11..7c6d539 100644 --- a/redfishtool/redfishtoolTransport.py +++ b/redfishtool/redfishtoolTransport.py @@ -57,8 +57,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.0.8" # this redfishtool version - self.releaseDate="11/30/2018" # release date for this version of redfishtool + self.version="1.0.9" # this redfishtool version + self.releaseDate="07/12/2019" # 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 d37d099..f1af621 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ long_description = f.read() setup(name='redfishtool', - version='1.0.8', + version='1.0.9', description='Redfishtool package and command-line client', long_description=long_description, long_description_content_type='text/markdown',