Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ashb committed Nov 11, 2022
1 parent b4ceb78 commit b2f4256
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -171,7 +171,7 @@ jobs:


- name: upload to pypi
run: poetry publish --dry-run
run: poetry publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.pypi_token }}

Expand All @@ -181,4 +181,4 @@ jobs:
files: |
dist/*
generate_release_notes: true
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') }}
prerelease: ${{ contains(github.ref, 'a') || contains(github.ref, 'b') || contains(github.ref, 'rc') }}
8 changes: 5 additions & 3 deletions docs/changelog.rst
Expand Up @@ -2,11 +2,13 @@
Change log
**********

0.4.0 (unreleased)
0.4.0
#####

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

0.3.1
#####
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sphinx-argparse"
version = "0.4.0a1"
version = "0.4.0"
description = "A sphinx extension that automatically documents argparse commands and options"
readme = "README.md"
repository = "https://github.com/ashb/sphinx-argparse"
Expand Down

0 comments on commit b2f4256

Please sign in to comment.