Skip to content

Commit

Permalink
Merge pull request #31 from DMTF/2.0.7-Tagging
Browse files Browse the repository at this point in the history
2.0.7 Versioning
  • Loading branch information
mraineri authored Feb 8, 2019
2 parents 2fed215 + 984e3ea commit 94a0989
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 39 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

## [2.0.7] - 2019-02-08
- Added optional timeout and max retry arguments

## [2.0.6] - 2019-01-11
- Removed usage of setting the Content-Type header to application/x-www-form-urlencoded for PUT, POST, and PATCH methods

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,5 @@ Copyright and License
---------------------

Copyright Notice:
Copyright 2016-2018 DMTF. All rights reserved.
Copyright 2016-2019 DMTF. All rights reserved.
License: BSD 3-Clause License. For full text see link: `https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md <https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md>`_
2 changes: 1 addition & 1 deletion examples/discover.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright Notice:
# Copyright 2016-2018 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md

import redfish
Expand Down
4 changes: 1 addition & 3 deletions examples/quickstart.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

import sys
import redfish
Expand Down
4 changes: 1 addition & 3 deletions examples/quickstart_rmc.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setup(name='redfish',
version='2.0.6',
version='2.0.7',
description='Redfish Python Library',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down
6 changes: 2 additions & 4 deletions src/redfish/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

""" Redfish restful library """

__all__ = ['rest', 'ris', 'discovery']
__version__ = "2.0.6"
__version__ = "2.0.7"

from redfish.rest.v1 import redfish_client
from redfish.rest.v1 import AuthMethod
Expand Down
2 changes: 1 addition & 1 deletion src/redfish/discovery/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright Notice:
# Copyright 2016-2018 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
2 changes: 1 addition & 1 deletion src/redfish/discovery/discovery.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright Notice:
# Copyright 2016-2018 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md

# -*- coding: utf-8 -*-
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/rest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

""" Utilities to simplify interaction with Redfish data """
4 changes: 1 addition & 3 deletions src/redfish/rest/v1.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""Helper module for working with REST technology."""
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/config.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""Module for working with global configuration options."""
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/ris.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""RIS implementation"""
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/rmc.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""RMC implementation """
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/rmc_helper.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
"""RMC helper implementation"""
Expand Down
4 changes: 1 addition & 3 deletions src/redfish/ris/sharedtypes.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
###
# Copyright Notice:
# Copyright 2016 DMTF. All rights reserved.
# Copyright 2016-2019 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link: https://github.com/DMTF/python-redfish-library/blob/master/LICENSE.md
###

# -*- coding: utf-8 -*-
""" Shared types used in this module """
Expand Down

0 comments on commit 94a0989

Please sign in to comment.