Skip to content

Commit 6d548f7

Browse files
committed
Prepare release 0.17.0
1 parent e88142b commit 6d548f7

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

docs/src/release_notes.rst

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

11-
0.17.0 (unreleased)
11+
0.17.0 (2025-02-18)
1212
-------------------
13+
Added
14+
*****
15+
- Add more Pygments lexer aliases in code blocks (:issue:`160`)
1316
- Introduce :confval:`codeautolink_warn_on_no_backreference` to highlight
1417
where reference documentation does not appear to have
1518
a corresponding tutorial or how-to (:issue:`161`)
16-
- Add more Pygments lexer aliases in code blocks (:issue:`160`)
17-
- Fix undocumented class attribute leading to a crash (:issue:`165`)
1819
- Support the ``default`` lexer, literal blocks, ``.. highlight::`` directive
1920
and ``highlight_language`` configuration (:issue:`166`)
2021
- Add :confval:`codeautolink_warn_on_default_parse_fail` to warn about
2122
failing to link code blocks without a language parameter (:issue:`166`)
2223
- Detect and implicitly use ``pycon`` lexer for blocks that look like
2324
console code (:issue:`168`)
25+
26+
Fixed
27+
*****
28+
- Fix undocumented class attribute leading to a crash (:issue:`165`)
2429
- Fix skipping blocks with identical content to linked ones (:issue:`172`)
2530

2631
0.16.2 (2025-01-16)

src/sphinx_codeautolink/__init__.py

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

8-
__version__ = "0.16.2"
8+
__version__ = "0.17.0"
99

1010

1111
def setup(app: Sphinx):

0 commit comments

Comments
 (0)