Skip to content

Commit

Permalink
3.1.1 versioning
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Raineri <[email protected]>
  • Loading branch information
mraineri committed Jan 18, 2022
1 parent 8b12201 commit d4270e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 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

## [3.1.1] - 2022-01-18
- Corrected 'import' statements to support Python 3.10

## [3.1.0] - 2022-01-10
- Updated library to leverage 'requests' in favor of 'http.client'

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

setup(name='redfish',
version='3.1.0',
version='3.1.1',
description='Redfish Python Library',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down
2 changes: 1 addition & 1 deletion src/redfish/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
""" Redfish restful library """

__all__ = ['rest', 'ris', 'discovery']
__version__ = "3.1.0"
__version__ = "3.1.1"

from redfish.rest.v1 import redfish_client
from redfish.rest.v1 import AuthMethod
Expand Down

0 comments on commit d4270e1

Please sign in to comment.