Skip to content

Commit

Permalink
2.0.4 Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
mraineri committed Oct 26, 2018
1 parent 9198642 commit 91b0a89
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 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.4] - 2018-10-26
- Added discovery module with SSDP support

## [2.0.3] - 2018-10-19
- Fixed handling of other successful HTTP responses (201, 202, and 204)
- Added support for being able to check the certificate of a service
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,11 @@ Release Process
----------

1. Update `CHANGELOG.md` with the list of changes since the last release
2. Update the `__version__` variable in `src/redfish/__init__.py`, and `setup.py` to reflect the new library version
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``


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.3',
version='2.0.4',
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 @@ -7,7 +7,7 @@
""" Redfish restful library """

__all__ = ['rest', 'ris', 'discovery']
__version__ = "2.0.3"
__version__ = "2.0.4"

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

0 comments on commit 91b0a89

Please sign in to comment.