Skip to content

Commit 92d3a63

Browse files
committed
Prepare release 0.17.3 (and reduce build noise)
1 parent aa8ac78 commit 92d3a63

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/src/release_notes.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ These release notes are based on
88
sphinx-codeautolink adheres to
99
`Semantic Versioning <https://semver.org>`_.
1010

11-
Unreleased
12-
----------
11+
0.17.3 (2025-03-06)
12+
-------------------
1313
- Fix Sphinx InventoryItem deprecation warning (:issue:`173`)
1414
- Add support for the DIRHTML Sphinx builder (:issue:`188`)
1515

src/sphinx_codeautolink/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .extension.block import clean_ipython, clean_pycon
99
from .extension.translation import MESSAGE_CATALOG_NAME
1010

11-
__version__ = "0.17.2"
11+
__version__ = "0.17.3"
1212

1313

1414
def setup(app: Sphinx):

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ commands = coverage run
3535
[testenv:doc8]
3636
description = Check documentation .rst files
3737
allowlist_externals = doc8
38-
commands = doc8 docs/src
38+
commands = doc8 docs/src --quiet
3939

4040
[testenv:docs]
4141
description = Build Sphinx documentation
@@ -62,7 +62,7 @@ description = Build and check package
6262
deps = -r requirements/build
6363
allowlist_externals = rm, cmd
6464
commands =
65-
python -m build
65+
python -m build -C--quiet
6666
twine check --strict dist/*
6767
commands_post =
6868
lin,mac: rm -r dist
@@ -76,7 +76,7 @@ commands_pre =
7676
lin,mac: rm -rf dist
7777
win: cmd /c if exist dist rmdir /s /q dist
7878
commands =
79-
python -m build
79+
python -m build -C--quiet
8080
twine check --strict dist/*
8181
twine upload dist/* --config-file .pypirc
8282
commands_post =

0 commit comments

Comments
 (0)