Skip to content

Commit 630935c

Browse files
authored
Merge pull request #11 from DMTF/1.0.0
Changing version to 1.0.0 for pip submission
2 parents 7bc66dc + e8ef555 commit 630935c

11 files changed

+15
-13
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
21
# Change Log
2+
## [1.0.0] - 2017-6-1
3+
- added AccountService setusername operation to modify the UserName property in an existing account
4+
35
## [0.9.3] - 2017-4-27
46
- updated spelling in various usage print statements
57
- corrected usage statement for SessionService login and logout subcommands

redfishtool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright 2016 Distributed Management Task Force, Inc. All rights reserved.
44
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
55

6-
# redfishtool: redfishtool.py ver 0.9.1
6+
# redfishtool: redfishtool.py
77
#
88
# contents:
99
# -CLI wrapper: calls main() routine in ./redfishtool package

redfishtool/AccountService.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: AccountService.py
6-
# v0.9.1
6+
#
77
# contains AccountService related subCommands and access functions
88
#
99
# Class RfAccountServiceMain

redfishtool/Chassis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: Chassis.py
6-
# v0.9
6+
#
77
# contains Chassis subCommands and access functions
88
#
99
# Class RfSystemsMain

redfishtool/Managers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: Managers.py
6-
# v0.9.1
6+
#
77
# contains Managers related subCommands and access functions
88
#
99
# Class RfManagersMain

redfishtool/ServiceRoot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: ServiceRoot.py
6-
# v0.9.2
6+
#
77
# contains serviceRoot related subCommands and access functions
88
# Class RfServiceRoot
99
# - getServiceRoot GET /redfish/v1

redfishtool/SessionService.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: SessionService.py
6-
# v0.9
6+
#
77
# contains SessionService related subCommands and access functions
88
#
99
# Class RfSessionServiceMain

redfishtool/Systems.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: Systems.py
6-
# v0.9.1
6+
#
77
# contains Systems related subCommands and access functions
88
#
99
# Class RfSystemsMain

redfishtool/raw.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: rawMain.py
6-
# v0.9.1
6+
#
77
# contains raw subCommands and access functions
88
#
99
# Class RfRawMain

redfishtool/redfishtoolMain.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: redfishtool.py Main
6-
# v0.9.2
6+
#
77
# contains:
88
# - functions called for usage:
99
# -- displayUsage, displayOptions, listSubcommands, displayHelp

redfishtool/redfishtoolTransport.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/Redfishtool/LICENSE.md
44

55
# redfishtool: redfishtoolTransport.py
6-
# v0.9.3
6+
#
77
# Contents:
88
# 1. Class RfSessionAuth -- holds auto-created session Auth info. 'requests' calls to get credentials
99
# 2. Class RfTransport -- has the generic functions to send/receive http requests, generic print functions, etc
@@ -58,8 +58,8 @@ class RfTransport():
5858
def __init__(self):
5959
# constant parameters-- these dont change and are not updated
6060
self.program="redfishtool" # program name (in case we want to change it)
61-
self.version="0.9.3" # this redfishtool version
62-
self.releaseDate="4/17/2017" # release date for this version of redfishtool
61+
self.version="1.0.0" # this redfishtool version
62+
self.releaseDate="6/1/2017" # release date for this version of redfishtool
6363
self.downloadFrom="https://github.com/DMTF/Redfishtool" # where to find redfishtool
6464
self.magic="12345" # used for debug to test for a known parameter in this object
6565
self.UNAUTHENTICATED_API=1 # unauthenticated API that doesn't send credentials in body data

0 commit comments

Comments
 (0)