Skip to content

Commit d3c3cf5

Browse files
committed
build: Iterate the version number
1 parent c9c6553 commit d3c3cf5

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.2.2 - February 23, 2024
2+
-------------------------
33

44
* Add Python 3.12 support.
55
* Drop Python 3.7 support (end-of-life was June 27, 2023).

docs/conf.py

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

1313
project = 'agate-remote'
1414
copyright = '2016, Christopher Groskopf'
15-
version = '0.2.1'
15+
version = '0.2.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-remote',
8-
version='0.2.1',
8+
version='0.2.2',
99
description='agate-remote adds read support for remote files to agate.',
1010
long_description=long_description,
1111
long_description_content_type='text/x-rst',

0 commit comments

Comments
 (0)