Skip to content

Commit

Permalink
Merge pull request #94 from DMTF/1.1.5-Taging
Browse files Browse the repository at this point in the history
1.1.5 Versioning
  • Loading branch information
mraineri authored Mar 2, 2021
2 parents 9f6804b + 1850206 commit 540049d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [1.1.5] - 2021-03-02
- Added --no-proxy option
- Fixed missing documentation to show PowerCycle is a valid reset option

## [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
Expand Down
4 changes: 2 additions & 2 deletions redfishtoollib/redfishtoolTransport.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.4" # this redfishtool version
self.releaseDate="07/24/2020" # release date for this version of redfishtool
self.version="1.1.5" # this redfishtool version
self.releaseDate="03/02/2021" # 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
4 changes: 2 additions & 2 deletions 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.1.4',
version='1.1.5',
description='Redfishtool package and command-line client',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -21,7 +21,7 @@
],
keywords='Redfish',
url='https://github.com/DMTF/Redfishtool',
download_url='https://github.com/DMTF/Redfishtool/archive/1.1.4.tar.gz',
download_url='https://github.com/DMTF/Redfishtool/archive/1.1.5.tar.gz',
packages=['redfishtoollib'],
scripts=['scripts/redfishtool', 'scripts/redfishtool.py'],
install_requires=['python-dateutil', 'requests']
Expand Down

0 comments on commit 540049d

Please sign in to comment.