Skip to content

2.0.7 Versioning #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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