Skip to content

Commit b7a561c

Browse files
committed
Update for release candidate.
1 parent d7faadb commit b7a561c

26 files changed

+47
-29
lines changed

NEWS.rst

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,52 @@
22

33
.. towncrier release notes start
44
5+
towncrier 23.6.0rc1 (2023-06-05)
6+
================================
7+
8+
Features
9+
--------
10+
11+
- Make ``towncrier create`` use the fragment counter rather than failing
12+
on existing fragment names.
13+
14+
For example, if there is an existing fragment named ``123.feature``,
15+
then ``towncrier create 123.feature`` will now create a fragment
16+
named ``123.feature.1``. (`#475 <https://github.com/twisted/towncrier/issues/475>`_)
17+
- Provide a default Markdown template if the configured filename ends with ``.md``.
18+
19+
The Markdown template uses the same rendered format as the default *reStructuredText* template, but with a Markdown syntax. (`#483 <https://github.com/twisted/towncrier/issues/483>`_)
20+
- Towncrier no longer depends on setuptools & uses importlib.resources (or its backport) instead. (`#496 <https://github.com/twisted/towncrier/issues/496>`_)
21+
- Added pre-commit hooks for checking and updating news in projects using pre-commit. (`#498 <https://github.com/twisted/towncrier/issues/498>`_)
22+
- Calling ``towncrier check`` without an existing configuration, will just show only an error message.
23+
24+
In previous versions, a traceback was generated instead of the error message. (`#501 <https://github.com/twisted/towncrier/issues/501>`_)
25+
26+
27+
Bugfixes
28+
--------
29+
30+
- Fix creating fragment in a section not adding random characters.
31+
32+
For example, ``towncrier create some_section/+.feature`` should end up as a fragment named something like ``news/some_section/+a4e22da1.feature``. (`#468 <https://github.com/twisted/towncrier/issues/468>`_)
33+
- Fix the ReadTheDocs build for ``towncrier`` which was broken due to the python version in use being 3.8. Upgrade to 3.11. (`#509 <https://github.com/twisted/towncrier/issues/509>`_)
34+
35+
36+
Improved Documentation
37+
----------------------
38+
39+
- Moved man page to correct section (`#470 <https://github.com/twisted/towncrier/issues/470>`_)
40+
- Update link to Quick Start in configuration.html to point to Tutorial instead. (`#504 <https://github.com/twisted/towncrier/issues/504>`_)
41+
- Add a note about the build command's ``--version`` requiring the command to be explicitly passed. (`#511 <https://github.com/twisted/towncrier/issues/511>`_)
42+
- Fix typos in the Pre-Commit docs. (`#512 <https://github.com/twisted/towncrier/issues/512>`_)
43+
- (`#513 <https://github.com/twisted/towncrier/issues/513>`_)
44+
45+
46+
Misc
47+
----
48+
49+
- `#459 <https://github.com/twisted/towncrier/issues/459>`_, `#462 <https://github.com/twisted/towncrier/issues/462>`_, `#472 <https://github.com/twisted/towncrier/issues/472>`_, `#485 <https://github.com/twisted/towncrier/issues/485>`_, `#486 <https://github.com/twisted/towncrier/issues/486>`_, `#487 <https://github.com/twisted/towncrier/issues/487>`_, `#488 <https://github.com/twisted/towncrier/issues/488>`_, `#495 <https://github.com/twisted/towncrier/issues/495>`_, `#497 <https://github.com/twisted/towncrier/issues/497>`_, `#507 <https://github.com/twisted/towncrier/issues/507>`_, `#1117 <https://github.com/twisted/towncrier/issues/1117>`_
50+
551

652
towncrier 22.12.0 (2022-12-21)
753
==============================

src/towncrier/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from incremental import Version
99

1010

11-
__version__ = Version("towncrier", 22, 12, 1, dev=0)
11+
__version__ = Version("towncrier", 23, 6, 0, release_candidate=1)
1212
# The version is exposed in string format to be
1313
# available for the hatching build tools.
1414
_hatchling_version = __version__.short()

src/towncrier/newsfragments/+docs-compare-with.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/towncrier/newsfragments/1117.misc

Whitespace-only changes.

src/towncrier/newsfragments/459.misc

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/towncrier/newsfragments/462.misc

Whitespace-only changes.

src/towncrier/newsfragments/468.bugfix

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/towncrier/newsfragments/470.doc

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/towncrier/newsfragments/472.misc

Whitespace-only changes.

src/towncrier/newsfragments/475.feature

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)