Skip to content

Commit

Permalink
Merge pull request #53 from DMTF/2.0.9-Tagging
Browse files Browse the repository at this point in the history
2.0.9 Versioning
  • Loading branch information
mraineri authored Jun 28, 2019
2 parents cdceb67 + 9e49687 commit c5dd17a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [2.0.9] - 2019-06-28
- Added various unit tests and other cleanup
- Added example for how to use the 'with' statement to perform automatically log out of a service
- Made change to include the original trace when RetriesExhaustedError is encountered

## [2.0.8] - 2019-05-17
- Added helper functions for Task processing

Expand Down
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ Release Process
2. Update the ``__version__`` variable in ``src/redfish/__init__.py``, and ``setup.py`` to reflect the new library version
3. Push changes to Github
4. Create a new release in Github
5. Push the new library version to pypi.org: ``python setup.py sdist upload -r pypi``
5. Push the new library version to pypi.org:
* ``python setup.py sdist``
* ``twine upload dist/*``


Copyright and License
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.8',
version='2.0.9',
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 @@ -5,7 +5,7 @@
""" Redfish restful library """

__all__ = ['rest', 'ris', 'discovery']
__version__ = "2.0.8"
__version__ = "2.0.9"

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

0 comments on commit c5dd17a

Please sign in to comment.