Skip to content

Commit 540049d

Browse files
authored
Merge pull request #94 from DMTF/1.1.5-Taging
1.1.5 Versioning
2 parents 9f6804b + 1850206 commit 540049d

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Diff for: CHANGELOG.md

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

3+
## [1.1.5] - 2021-03-02
4+
- Added --no-proxy option
5+
- Fixed missing documentation to show PowerCycle is a valid reset option
6+
37
## [1.1.4] - 2020-07-24
48
- Renamed the package to not conflict with the name of the script
59
- Added additional redfishtool.py script for Windows compatibility

Diff for: redfishtoollib/redfishtoolTransport.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class RfTransport():
6060
def __init__(self):
6161
# constant parameters-- these dont change and are not updated
6262
self.program="redfishtool" # program name (in case we want to change it)
63-
self.version="1.1.4" # this redfishtool version
64-
self.releaseDate="07/24/2020" # release date for this version of redfishtool
63+
self.version="1.1.5" # this redfishtool version
64+
self.releaseDate="03/02/2021" # release date for this version of redfishtool
6565
self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool
6666
self.magic="12345" # used for debug to test for a known parameter in this object
6767
self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data

Diff for: setup.py

+2-2
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.1.4',
9+
version='1.1.5',
1010
description='Redfishtool package and command-line client',
1111
long_description=long_description,
1212
long_description_content_type='text/markdown',
@@ -21,7 +21,7 @@
2121
],
2222
keywords='Redfish',
2323
url='https://github.com/DMTF/Redfishtool',
24-
download_url='https://github.com/DMTF/Redfishtool/archive/1.1.4.tar.gz',
24+
download_url='https://github.com/DMTF/Redfishtool/archive/1.1.5.tar.gz',
2525
packages=['redfishtoollib'],
2626
scripts=['scripts/redfishtool', 'scripts/redfishtool.py'],
2727
install_requires=['python-dateutil', 'requests']

0 commit comments

Comments
 (0)