Skip to content

Commit 0dfa128

Browse files
authored
Merge pull request #19 from metaodi/develop
Release 0.0.3
2 parents 59bb796 + 6ed098b commit 0dfa128

File tree

3 files changed

+10
-23
lines changed

3 files changed

+10
-23
lines changed

.github/workflows/publish_python.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,14 @@ on:
88
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
99

1010
jobs:
11-
release:
12-
name: Create Release
13-
runs-on: ubuntu-latest
14-
steps:
15-
- name: Checkout code
16-
uses: actions/checkout@master
17-
- name: Create Release
18-
id: create_release
19-
uses: actions/create-release@v1
20-
env:
21-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22-
with:
23-
tag_name: ${{ github.ref }}
24-
release_name: Release ${{ github.ref }}
25-
body: |
26-
Changes in this Release
27-
draft: false
28-
prerelease: false
2911
deploy:
30-
needs: release
3112
runs-on: ubuntu-latest
3213
steps:
3314
- uses: actions/checkout@v1
3415
- name: Set up Python
3516
uses: actions/setup-python@v1
3617
with:
37-
python-version: '3.x'
18+
python-version: '3.8'
3819
- name: Install dependencies
3920
run: |
4021
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
44

55
## [Unreleased]
66

7+
## [0.0.3] - 2020-06-10
8+
### Fixed
9+
- Fixed publish workflow to not create release
10+
- Add missing modules to `__all__`
11+
712
## [0.0.2] - 2020-06-10
813
### Added
914
- Support for explain operation
@@ -31,6 +36,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
3136
- `Fixed` for any bug fixes.
3237
- `Security` to invite users to upgrade in case of vulnerabilities.
3338

34-
[Unreleased]: https://github.com/metaodi/sruthi/compare/v0.0.2...HEAD
39+
[Unreleased]: https://github.com/metaodi/sruthi/compare/v0.0.3...HEAD
40+
[0.0.3]: https://github.com/metaodi/sruthi/compare/v0.0.2...v0.0.3
3541
[0.0.2]: https://github.com/metaodi/sruthi/compare/v0.0.1...v0.0.2
3642
[0.0.1]: https://github.com/metaodi/sruthi/releases/tag/v0.0.1

sruthi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
__version__ = '0.0.2'
2-
__all__ = ['errors', 'sru', 'client']
1+
__version__ = '0.0.3'
2+
__all__ = ['client', 'errors', 'response', 'sru', 'xmlparse']
33

44
from .errors import SruthiError, ServerIncompatibleError, SruError, NoMoreRecordsError # noqa
55
from .errors import SruthiWarning, WrongNamespaceWarning # noqa

0 commit comments

Comments
 (0)