Skip to content

Commit 63fb9e3

Browse files
author
Inbal Tako
committed
Add changelog to github actions
1 parent a596ebc commit 63fb9e3

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,20 @@ jobs:
2424
uses: actions/setup-python@v2
2525
with:
2626
python-version: '3.6'
27+
2728
- name: Install dependencies
2829
run: |
2930
python -m pip install --upgrade pip
3031
pip install setuptools wheel twine
32+
3133
- name: Build and publish
3234
env:
3335
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
3436
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3537
run: |
3638
python setup.py sdist bdist_wheel
3739
twine upload dist/*
40+
3841
- name: Create changelog
3942
uses: heinrichreimer/github-changelog-generator-action@v2.1.1
4043
with:

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.4
1+
0.3.5

securenative/utils/version_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class VersionUtils(object):
22

33
@staticmethod
44
def get_version():
5-
return "0.3.4"
5+
return "0.3.5"

0 commit comments

Comments
 (0)