Skip to content

Commit

Permalink
bump version to 0.5, enable publish to real pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
burner1024 committed Mar 28, 2022
1 parent 9f90dad commit 39fc7dd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/') && (matrix.os == 'ubuntu-latest')"
run: |
set -xeu -o pipefail
poetry config repositories.test-pypi https://test.pypi.org/legacy/
poetry config pypi-token.test-pypi $PYPI_TOKEN
poetry config pypi-token.pypi $PYPI_TOKEN
poetry build
poetry publish -r test-pypi
poetry publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ Download `zax.exe` from the [latest release page](https://github.com/BGforgeNet/
```

### Info
- [Forums](https://forums.bgforge.net/viewforum.php?f=34)
- [Development](docs/development.md)
- [Changelog](docs/changelog.md)
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### WIP
### 0.5
- Fixed Troubleshooting tab not updating on game switch.
- Published to PyPi.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zax"
version = "0.4.3"
version = "0.5"
description = "ZAX"
authors = ["BGforge <[email protected]>"]
keywords = ["fallout", "fallout2"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_zax.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == '0.4.3'
assert __version__ == '0.5'
2 changes: 1 addition & 1 deletion zax/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.3'
__version__ = '0.5'

0 comments on commit 39fc7dd

Please sign in to comment.