Skip to content

Commit 1d0a373

Browse files
committed
Version bump to 2.0
1 parent 5bc8e30 commit 1d0a373

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
name: Upload Python Package
55

66
on:
7-
release:
8-
types: [created]
7+
create:
8+
tags:
99

1010
jobs:
1111
deploy:
12-
if: ${{ startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/main' }}
12+
if: ${{ github.event.base_ref == 'refs/heads/main' }}
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python
1717
uses: actions/setup-python@v2
1818
with:
19-
python-version: '3.x'
19+
python-version: '3.8.x'
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def parse_requirements(filename):
2222
if __name__ == "__main__":
2323
setup(
2424
name=PACKAGE_NAME,
25-
version="0.1.4",
25+
version="0.2.0",
2626
description="A simple python package for controlling an aries agent through the admin-api interface",
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)