Skip to content

Commit 9995d6e

Browse files
committed
1.0.9 Versioning
1 parent 95996b0 commit 9995d6e

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [1.0.9] - 2019-07-12
4+
- Added the ability to get credentials from the config file rather than specifying them on the command line
5+
36
## [1.0.8] - 2018-11-30
47
- Made the "One" option enabled by default for Systems, Managers, and Chassis collections
58

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -594,4 +594,5 @@ In order for executables to resolve if using Windows, ensure both the "Python" a
594594
4. Push changes to Github
595595
5. Create a new release in Github
596596
6. Push the new tool version to pypi.org
597-
* `python setup.py sdist upload -r pypi`
597+
* `python setup.py sdist`
598+
* `twine upload dist/*`

redfishtool/redfishtoolTransport.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ class RfTransport():
5757
def __init__(self):
5858
# constant parameters-- these dont change and are not updated
5959
self.program="redfishtool" # program name (in case we want to change it)
60-
self.version="1.0.8" # this redfishtool version
61-
self.releaseDate="11/30/2018" # release date for this version of redfishtool
60+
self.version="1.0.9" # this redfishtool version
61+
self.releaseDate="07/12/2019" # release date for this version of redfishtool
6262
self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool
6363
self.magic="12345" # used for debug to test for a known parameter in this object
6464
self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
long_description = f.read()
77

88
setup(name='redfishtool',
9-
version='1.0.8',
9+
version='1.0.9',
1010
description='Redfishtool package and command-line client',
1111
long_description=long_description,
1212
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)