File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ 3.1.0] - 2022-01-10
4
+ - Updated library to leverage 'requests' in favor of 'http.client'
5
+
3
6
## [ 3.0.3] - 2021-10-15
4
7
- Added support for performing multi-part HTTP POST requests
5
8
Original file line number Diff line number Diff line change 12
12
long_description = f .read ()
13
13
14
14
setup (name = 'redfish' ,
15
- version = '3.0.3 ' ,
15
+ version = '3.1.0 ' ,
16
16
description = 'Redfish Python Library' ,
17
17
long_description = long_description ,
18
18
long_description_content_type = 'text/x-rst' ,
Original file line number Diff line number Diff line change 6
6
""" Redfish restful library """
7
7
8
8
__all__ = ['rest' , 'ris' , 'discovery' ]
9
- __version__ = "3.0.3 "
9
+ __version__ = "3.1.0 "
10
10
11
11
from redfish .rest .v1 import redfish_client
12
12
from redfish .rest .v1 import AuthMethod
You can’t perform that action at this time.
0 commit comments