Skip to content

Commit 921fc98

Browse files
committed
build: Iterate the version number
1 parent 5c09a17 commit 921fc98

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/pypi.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on: push
33
jobs:
44
build:
55
runs-on: ubuntu-latest
6+
permissions:
7+
id-token: write
68
steps:
79
- uses: actions/checkout@v4
810
- uses: actions/setup-python@v5
@@ -13,11 +15,8 @@ jobs:
1315
- name: Publish to TestPyPI
1416
uses: pypa/gh-action-pypi-publish@release/v1
1517
with:
16-
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
1718
repository-url: https://test.pypi.org/legacy/
1819
skip-existing: true
1920
- name: Publish to PyPI
2021
if: startsWith(github.ref, 'refs/tags')
2122
uses: pypa/gh-action-pypi-publish@release/v1
22-
with:
23-
password: ${{ secrets.PYPI_API_TOKEN }}

CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Unreleased
2-
----------
1+
0.4.2 - February 23, 2024
2+
-------------------------
33

44
* Add Python 3.8, 3.9, 3.10, 3.11, 3.12 support.
55
* Drop support for Python 2.7 (EOL 2020-01-01), 3.4 (2019-03-18), 3.5 (2020-09-13), 3.6 (2021-12-23), 3.7 (2023-06-27).

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
project = 'agate-stats'
1414
copyright = '2015, Christopher Groskopf'
15-
version = '0.4.1'
15+
version = '0.4.2'
1616
release = version
1717

1818
# -- General configuration ---------------------------------------------------

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='agate-stats',
8-
version='0.4.1',
8+
version='0.4.2',
99
description='agate-stats adds additional statistical methods to agate.',
1010
long_description=long_description,
1111
long_description_content_type='text/x-rst',

0 commit comments

Comments
 (0)