File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 1.1.0] - 2019-08-09
4
+ - Added support for getting Power and Thermal resources with a specified chassis, or leaving it unspecified if there is exactly one chassis
5
+
3
6
## [ 1.0.9] - 2019-07-12
4
7
- Added the ability to get credentials from the config file rather than specifying them on the command line
5
8
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ class RfTransport():
57
57
def __init__ (self ):
58
58
# constant parameters-- these dont change and are not updated
59
59
self .program = "redfishtool" # program name (in case we want to change it)
60
- self .version = "1.0.9 " # this redfishtool version
61
- self .releaseDate = "07/12 /2019" # release date for this version of redfishtool
60
+ self .version = "1.1.0 " # this redfishtool version
61
+ self .releaseDate = "08/09 /2019" # release date for this version of redfishtool
62
62
self .downloadFrom = "https://github.com/DMTF/Redfishtool" # where to find redfishtool
63
63
self .magic = "12345" # used for debug to test for a known parameter in this object
64
64
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.0.9 ' ,
9
+ version = '1.1.0 ' ,
10
10
description = 'Redfishtool package and command-line client' ,
11
11
long_description = long_description ,
12
12
long_description_content_type = 'text/markdown' ,
You can’t perform that action at this time.
0 commit comments