Skip to content

Commit

Permalink
Version bump to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
morrieinmaas committed May 19, 2021
1 parent 5bc8e30 commit 1d0a373
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
name: Upload Python Package

on:
release:
types: [created]
create:
tags:

jobs:
deploy:
if: ${{ startsWith(github.ref, 'refs/tags/') && github.event.base_ref == 'refs/heads/main' }}
if: ${{ github.event.base_ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.8.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def parse_requirements(filename):
if __name__ == "__main__":
setup(
name=PACKAGE_NAME,
version="0.1.4",
version="0.2.0",
description="A simple python package for controlling an aries agent through the admin-api interface",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 1d0a373

Please sign in to comment.