File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
7
## [ 1.1.4] - 2020-07-24
4
8
- Renamed the package to not conflict with the name of the script
5
9
- Added additional redfishtool.py script for Windows compatibility
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ class RfTransport():
60
60
def __init__ (self ):
61
61
# constant parameters-- these dont change and are not updated
62
62
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
65
65
self .downloadFrom = "https://github.com/DMTF/Redfishtool" # where to find redfishtool
66
66
self .magic = "12345" # used for debug to test for a known parameter in this object
67
67
self .UNAUTHENTICATED_API = 1 # unauthenticated API that doesn't send credentials in body data
Original file line number Diff line number Diff line change 6
6
long_description = f .read ()
7
7
8
8
setup (name = 'redfishtool' ,
9
- version = '1.1.4 ' ,
9
+ version = '1.1.5 ' ,
10
10
description = 'Redfishtool package and command-line client' ,
11
11
long_description = long_description ,
12
12
long_description_content_type = 'text/markdown' ,
21
21
],
22
22
keywords = 'Redfish' ,
23
23
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' ,
25
25
packages = ['redfishtoollib' ],
26
26
scripts = ['scripts/redfishtool' , 'scripts/redfishtool.py' ],
27
27
install_requires = ['python-dateutil' , 'requests' ]
You can’t perform that action at this time.
0 commit comments