Skip to content

Commit

Permalink
build: Iterate the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Feb 23, 2024
1 parent 3cc3cb6 commit 71cd3c8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pypi.yml
Expand Up @@ -3,6 +3,8 @@ on: push
jobs:
build:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand All @@ -13,11 +15,8 @@ jobs:
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
4 changes: 2 additions & 2 deletions CHANGELOG.rst
@@ -1,5 +1,5 @@
Unreleased
----------
0.1.2 - February 23, 2024
-------------------------

* Add Python 3.12 support.
* Drop Python 3.7 support (end-of-life was June 27, 2023).
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -18,7 +18,7 @@

project = 'agate-charts'
copyright = '2015, Christopher Groskopf'
version = '0.1.1'
version = '0.1.2'
release = version

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name='agate-charts',
version='0.1.1',
version='0.1.2',
description='agate-charts adds exploratory charting support to agate.',
long_description=long_description,
long_description_content_type='text/x-rst',
Expand Down

0 comments on commit 71cd3c8

Please sign in to comment.