Skip to content

Commit

Permalink
1.0.9 Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mraineri committed Jul 12, 2019
1 parent 95996b0 commit 9995d6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/*`
4 changes: 2 additions & 2 deletions redfishtool/redfishtoolTransport.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 9995d6e

Please sign in to comment.