Skip to content

Commit

Permalink
Merge pull request #19 from metaodi/develop
Browse files Browse the repository at this point in the history
Release 0.0.3
  • Loading branch information
metaodi authored Jun 10, 2020
2 parents 59bb796 + 6ed098b commit 0dfa128
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 23 deletions.
21 changes: 1 addition & 20 deletions .github/workflows/publish_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,33 +8,14 @@ on:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
Changes in this Release
draft: false
prerelease: false
deploy:
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p

## [Unreleased]

## [0.0.3] - 2020-06-10
### Fixed
- Fixed publish workflow to not create release
- Add missing modules to `__all__`

## [0.0.2] - 2020-06-10
### Added
- Support for explain operation
Expand Down Expand Up @@ -31,6 +36,7 @@ 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.2...HEAD
[Unreleased]: https://github.com/metaodi/sruthi/compare/v0.0.3...HEAD
[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
4 changes: 2 additions & 2 deletions sruthi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '0.0.2'
__all__ = ['errors', 'sru', 'client']
__version__ = '0.0.3'
__all__ = ['client', 'errors', 'response', 'sru', 'xmlparse']

from .errors import SruthiError, ServerIncompatibleError, SruError, NoMoreRecordsError # noqa
from .errors import SruthiWarning, WrongNamespaceWarning # noqa
Expand Down

0 comments on commit 0dfa128

Please sign in to comment.