Skip to content

Commit 605ccc5

Browse files
authored
Merge pull request #57 from DMTF/1.0.6-Tagging
1.0.6 Versioning
2 parents 56ef176 + 7d12e91 commit 605ccc5

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

CHANGELOG.md

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

3+
## [1.0.6] - 2018-10-12
4+
- Fixed help output for the raw command
5+
36
## [1.0.5] - 2018-09-21
47
- Fixed bug with nextLink handling
58
- Fixed parsing of `@odata.type` properties when they use an unversioned namespace

README.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,24 @@ While other generic HTTP clients such as Linux curl can send and receive Redfish
3434
* The execption is that a 'list' operation was added for all collections to display the key properties for each of the members--rather than just the URIs to the members.
3535

3636

37-
## Requirements
37+
## Installation
38+
`redfishtool` can be installed via [pip](https://pip.pypa.io/en/stable/).
3839

39-
***redfishtool*** is based on Python 3 and the client system is required to have the Python framework installed before the tool can be installed and executed on the system. Additionally, the following packages are required to be installed and accessible from the python environment:
40-
* requests - https://github.com/kennethreitz/requests
40+
```
41+
pip install redfishtool
42+
```
4143

42-
You may install the required packages by running:
4344

44-
pip install -r requirements.txt
45+
## Requirements
4546

47+
***redfishtool*** is based on Python 3 and the client system is required to have the Python framework installed before the tool can be installed and executed on the system.
4648

49+
If cloning the tool from Github, as opposed to performing the installation via pip, the following packages are required to be installed and accessible from the python environment:
50+
* requests - https://github.com/kennethreitz/requests
4751

48-
## Installation
49-
`redfishtool` can be installed via [pip](https://pip.pypa.io/en/stable/).
52+
You may install the required packages by running:
5053

51-
```
52-
pip install redfishtool
53-
```
54+
pip install -r requirements.txt
5455

5556

5657
## Usage

redfishtool/redfishtoolTransport.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ class RfTransport():
5757
def __init__(self):
5858
# constant parameters-- these dont change and are not updated
5959
self.program="redfishtool" # program name (in case we want to change it)
60-
self.version="1.0.5" # this redfishtool version
61-
self.releaseDate="9/21/2018" # release date for this version of redfishtool
60+
self.version="1.0.6" # this redfishtool version
61+
self.releaseDate="10/12/2018" # release date for this version of redfishtool
6262
self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool
6363
self.magic="12345" # used for debug to test for a known parameter in this object
6464
self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data

setup.py

+1-1
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.0.5',
9+
version='1.0.6',
1010
description='Redfishtool package and command-line client',
1111
long_description=long_description,
1212
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)