diff --git a/.github/workflows/publish_python.yml b/.github/workflows/publish_python.yml index ef45943..dbee2fd 100644 --- a/.github/workflows/publish_python.yml +++ b/.github/workflows/publish_python.yml @@ -19,6 +19,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install -r requirements.txt pip install setuptools wheel twine - name: Build and publish env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e50181..23e6da4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## [Unreleased] +## [0.0.4] - 2020-06-10 +### Fixed +- Fix description text on PyPI + ## [0.0.3] - 2020-06-10 ### Fixed - Fixed publish workflow to not create release @@ -36,7 +40,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p - `Fixed` for any bug fixes. - `Security` to invite users to upgrade in case of vulnerabilities. -[Unreleased]: https://github.com/metaodi/sruthi/compare/v0.0.3...HEAD +[Unreleased]: https://github.com/metaodi/sruthi/compare/v0.0.4...HEAD +[0.0.4]: https://github.com/metaodi/sruthi/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/metaodi/sruthi/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/metaodi/sruthi/compare/v0.0.1...v0.0.2 [0.0.1]: https://github.com/metaodi/sruthi/releases/tag/v0.0.1 diff --git a/sruthi/__init__.py b/sruthi/__init__.py index 2df914d..5c954e0 100644 --- a/sruthi/__init__.py +++ b/sruthi/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.3' +__version__ = '0.0.4' __all__ = ['client', 'errors', 'response', 'sru', 'xmlparse'] from .errors import SruthiError, ServerIncompatibleError, SruError, NoMoreRecordsError # noqa