Skip to content

Commit 7ab0f3d

Browse files
committed
Prepare release 0.13.0
1 parent c09a1a4 commit 7ab0f3d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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.13.0 (2023-01-08)
12+
-------------------
1313
- Declare support for Python 3.11 (:issue:`122`)
1414
- Remove support for Python 3.6 (:issue:`123`)
1515
- Disallow faulty IPython version 8.7.0 (:issue:`124`)

src/sphinx_codeautolink/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from .extension import SphinxCodeAutoLink, backref, directive
55
from .extension.block import clean_ipython, clean_pycon # NOQA
66

7-
__version__ = "0.12.1"
7+
__version__ = "0.13.0"
88

99

1010
def setup(app: Sphinx):

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ description = Build, check and publish package
9898
deps = -r requirements/build
9999
allowlist_externals = rm, cmd
100100
commands_pre =
101-
lin,mac: rm -r dist
102-
win: cmd /c rmdir /s /q dist
101+
lin,mac: rm -rf dist
102+
win: cmd /c if exist dist rmdir /s /q dist
103103
commands =
104104
python -m build
105105
twine check --strict dist/*

0 commit comments

Comments
 (0)