Skip to content

Commit

Permalink
1.0.6 Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mraineri committed Oct 12, 2018
1 parent 56ef176 commit 7d12e91
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## [1.0.6] - 2018-10-12
- Fixed help output for the raw command

## [1.0.5] - 2018-09-21
- Fixed bug with nextLink handling
- Fixed parsing of `@odata.type` properties when they use an unversioned namespace
Expand Down
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,23 +34,24 @@ While other generic HTTP clients such as Linux curl can send and receive Redfish
* 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.


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

***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:
* requests - https://github.com/kennethreitz/requests
```
pip install redfishtool
```

You may install the required packages by running:

pip install -r requirements.txt
## Requirements

***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.

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:
* requests - https://github.com/kennethreitz/requests

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

```
pip install redfishtool
```
pip install -r requirements.txt


## Usage
Expand Down
4 changes: 2 additions & 2 deletions redfishtool/redfishtoolTransport.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ class RfTransport():
def __init__(self):
# constant parameters-- these dont change and are not updated
self.program="redfishtool" # program name (in case we want to change it)
self.version="1.0.5" # this redfishtool version
self.releaseDate="9/21/2018" # release date for this version of redfishtool
self.version="1.0.6" # this redfishtool version
self.releaseDate="10/12/2018" # release date for this version of redfishtool
self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool
self.magic="12345" # used for debug to test for a known parameter in this object
self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = f.read()

setup(name='redfishtool',
version='1.0.5',
version='1.0.6',
description='Redfishtool package and command-line client',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7d12e91

Please sign in to comment.