Skip to content

Commit dfe18c2

Browse files
committed
Release version 4.0.0rc5
1 parent 89c834e commit dfe18c2

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,10 +860,11 @@ jobs:
860860
- name: Checkout
861861
uses: actions/checkout@v4
862862

863+
# FIXME pass python version via workflow_context
863864
- name: Setup Python
864865
uses: actions/setup-python@v5
865866
with:
866-
python-version: 3.x
867+
python-version: 3.9
867868

868869
- name: Install dependencies
869870
run: |

.github/workflows/ci/workflow_template.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -286,10 +286,11 @@ jobs:
286286
- name: Checkout
287287
uses: <@ action_checkout @>
288288

289+
# FIXME pass python version via workflow_context
289290
- name: Setup Python
290291
uses: <@ action_setup_python @>
291292
with:
292-
python-version: 3.x
293+
python-version: 3.9
293294

294295
- name: Install dependencies
295296
run: |
@@ -301,6 +302,13 @@ jobs:
301302
with:
302303
path: dist
303304

305+
- name: Publish GitHub release (${{ needs.analyze.outputs.release_type }})
306+
env:
307+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
308+
RELEASE_TYPE: ${{ needs.analyze.outputs.release_type }}
309+
RELEASE_VERSION: ${{ needs.test_packaging.outputs.version }}
310+
run: publish_github_release
311+
304312
- name: Publish PyPI release
305313
if: needs.analyze.outputs.release_type == 'tagged'
306314
env:
@@ -310,13 +318,6 @@ jobs:
310318
# Optional: twine will fallback to default if empty.
311319
TWINE_REPOSITORY_URL: ${{ secrets.PYPI_URL }}
312320
run: publish_pypi_release
313-
314-
- name: Publish GitHub release (${{ needs.analyze.outputs.release_type }})
315-
env:
316-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
317-
RELEASE_TYPE: ${{ needs.analyze.outputs.release_type }}
318-
RELEASE_VERSION: ${{ needs.test_packaging.outputs.version }}
319-
run: publish_github_release
320321
# }}}
321322

322323
# vim: foldmethod=marker foldlevel=0

NEWS.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v4.0.0rc4 (2025-02-09)
1+
# v4.0.0rc5 (2025-02-10)
22

33

44
## Features
@@ -24,10 +24,16 @@
2424

2525
- Renamed the `=retrospective_*` macros to simply `=retro_*`. The previous names are retained for backwards compatibility, but are now deprecated. (#1639)
2626

27+
# v4.0.0rc4 (2025-02-09)
28+
29+
30+
- *Skipped for technical reasons.*
31+
32+
2733
# v4.0.0rc3 (2025-02-09)
2834

2935

30-
## *Skipped for technical reasons.*
36+
- *Skipped for technical reasons.*
3137

3238

3339
# v4.0.0rc2 (2023-09-28)

plover/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# want to translate anyway.
1313
_ = lambda s: s
1414

15-
__version__ = '4.0.0rc4'
15+
__version__ = '4.0.0rc5'
1616
__copyright__ = '(C) Open Steno Project'
1717
__url__ = 'http://www.openstenoproject.org/'
1818
__download_url__ = 'http://www.openstenoproject.org/plover'

0 commit comments

Comments
 (0)