Skip to content

Commit

Permalink
0.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
altf4 committed Mar 4, 2024
1 parent 56d73b1 commit b9eae29
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Build and publish Python distributions to PyPI and TestPyPI
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- uses: actions/checkout@main
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
Expand All @@ -20,12 +20,12 @@ jobs:
--format=zip
- name: Publish distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
- name: Publish distribution to Test PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.testpypi_password }}
repository_url: https://test.pypi.org/legacy/
2 changes: 1 addition & 1 deletion melee/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Version of libmelee """

__version__ = "0.39.0"
__version__ = "0.40.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"packaging",
"pyserial",
],
version="0.39.0",
version="0.40.0",
description="Open API written in Python 3 for making your own Smash Bros: Melee AI that works with Slippi Online",
author="AltF4",
author_email="altf4petro@gmail.com",
Expand Down

0 comments on commit b9eae29

Please sign in to comment.