Skip to content

Commit b2f4256

Browse files
committed
v0.4.0
1 parent b4ceb78 commit b2f4256

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171

172172

173173
- name: upload to pypi
174-
run: poetry publish --dry-run
174+
run: poetry publish
175175
env:
176176
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.pypi_token }}
177177

@@ -181,4 +181,4 @@ jobs:
181181
files: |
182182
dist/*
183183
generate_release_notes: true
184-
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') }}
184+
prerelease: ${{ contains(github.ref, 'a') || contains(github.ref, 'b') || contains(github.ref, 'rc') }}

docs/changelog.rst

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
Change log
33
**********
44

5-
0.4.0 (unreleased)
5+
0.4.0
66
#####
77

8-
* Minimum python version is now 3.7
9-
* Remove colon from "Sub-commands" title
8+
* Minimum python version is now 3.7 by @ashb in https://github.com/ashb/sphinx-argparse/pull/25
9+
* Fix anchor for toc by @Blaok in https://github.com/ashb/sphinx-argparse/pull/2
10+
* feat: find executable filename to address #16 by @tsutterley in https://github.com/ashb/sphinx-argparse/pull/17
11+
* Test against python 3.11 too by @ashb in https://github.com/ashb/sphinx-argparse/pull/22
1012

1113
0.3.1
1214
#####

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sphinx-argparse"
3-
version = "0.4.0a1"
3+
version = "0.4.0"
44
description = "A sphinx extension that automatically documents argparse commands and options"
55
readme = "README.md"
66
repository = "https://github.com/ashb/sphinx-argparse"

0 commit comments

Comments
 (0)