Skip to content

Commit 7cbec75

Browse files
committed
Create rc1.
1 parent 3859e58 commit 7cbec75

27 files changed

+39
-17
lines changed

NEWS.rst

+38
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,44 @@
22

33
.. towncrier release notes start
44
5+
towncrier 22.12.0rc1 (2022-12-20)
6+
==================================
7+
8+
Features
9+
--------
10+
11+
- Added ``--keep`` option to the ``build`` command that allows generating a newsfile, but keeps the newsfragments in place.
12+
This option can not be used together with ``--yes``. (`#129 <https://github.com/hawkowl/towncrier/issues/129>`_)
13+
- Python 3.11 is now officially supported. (`#427 <https://github.com/hawkowl/towncrier/issues/427>`_)
14+
- You can now create fragments that are not associated with issues. Start the name of the fragment with ``+`` (e.g. ``+anything.feature``).
15+
The content of these orphan news fragments will be included in the release notes, at the end of the category corresponding to the file extension.
16+
17+
To help quickly create a unique orphan news fragment, ``towncrier create +.feature`` will append a random string to the base name of the file, to avoid name collisions. (`#428 <https://github.com/hawkowl/towncrier/issues/428>`_)
18+
19+
20+
Improved Documentation
21+
----------------------
22+
23+
- Improved contribution documentation. (`#415 <https://github.com/hawkowl/towncrier/issues/415>`_)
24+
- Correct a typo in the readme that incorrectly documented custom fragments in a format that does not work. (`#424 <https://github.com/hawkowl/towncrier/issues/424>`_)
25+
- The documentation has been restructured and (hopefully) improved. (`#435 <https://github.com/hawkowl/towncrier/issues/435>`_)
26+
- Added a Markdown-based how-to guide. (`#436 <https://github.com/hawkowl/towncrier/issues/436>`_)
27+
- Defining custom fragments using a TOML array is not deprecated anymore. (`#438 <https://github.com/hawkowl/towncrier/issues/438>`_)
28+
29+
30+
Deprecations and Removals
31+
-------------------------
32+
33+
- Default branch for `towncrier check` is now "origin/main" instead of "origin/master".
34+
If "origin/main" does not exist, fallback to "origin/master" with a deprecation warning. (`#400 <https://github.com/hawkowl/towncrier/issues/400>`_)
35+
36+
37+
Misc
38+
----
39+
40+
- `#406 <https://github.com/hawkowl/towncrier/issues/406>`_, `#408 <https://github.com/hawkowl/towncrier/issues/408>`_, `#411 <https://github.com/hawkowl/towncrier/issues/411>`_, `#412 <https://github.com/hawkowl/towncrier/issues/412>`_, `#413 <https://github.com/hawkowl/towncrier/issues/413>`_, `#414 <https://github.com/hawkowl/towncrier/issues/414>`_, `#416 <https://github.com/hawkowl/towncrier/issues/416>`_, `#418 <https://github.com/hawkowl/towncrier/issues/418>`_, `#419 <https://github.com/hawkowl/towncrier/issues/419>`_, `#421 <https://github.com/hawkowl/towncrier/issues/421>`_, `#429 <https://github.com/hawkowl/towncrier/issues/429>`_, `#430 <https://github.com/hawkowl/towncrier/issues/430>`_, `#431 <https://github.com/hawkowl/towncrier/issues/431>`_, `#434 <https://github.com/hawkowl/towncrier/issues/434>`_, `#446 <https://github.com/hawkowl/towncrier/issues/446>`_, `#447 <https://github.com/hawkowl/towncrier/issues/447>`_
41+
42+
543
towncrier 22.8.0 (2022-08-29)
644
=============================
745

src/towncrier/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
from incremental import Version
99

1010

11-
__version__ = Version("towncrier", 22, 8, 1, dev=0)
11+
__version__ = Version("towncrier", 22, 12, 0, release_candidate=1)
1212
__all__ = ["__version__"]

src/towncrier/newsfragments/129.feature

-2
This file was deleted.

src/towncrier/newsfragments/400.removal

-2
This file was deleted.

src/towncrier/newsfragments/406.misc

Whitespace-only changes.

src/towncrier/newsfragments/408.misc

Whitespace-only changes.

src/towncrier/newsfragments/411.misc

Whitespace-only changes.

src/towncrier/newsfragments/412.misc

Whitespace-only changes.

src/towncrier/newsfragments/413.misc

Whitespace-only changes.

src/towncrier/newsfragments/414.misc

Whitespace-only changes.

src/towncrier/newsfragments/415.doc

-1
This file was deleted.

src/towncrier/newsfragments/416.misc

Whitespace-only changes.

src/towncrier/newsfragments/418.misc

Whitespace-only changes.

src/towncrier/newsfragments/419.misc

Whitespace-only changes.

src/towncrier/newsfragments/421.misc

Whitespace-only changes.

src/towncrier/newsfragments/424.doc

-1
This file was deleted.

src/towncrier/newsfragments/427.feature

-1
This file was deleted.

src/towncrier/newsfragments/428.feature

-4
This file was deleted.

src/towncrier/newsfragments/429.misc

Whitespace-only changes.

src/towncrier/newsfragments/430.misc

-2
This file was deleted.

src/towncrier/newsfragments/431.misc

Whitespace-only changes.

src/towncrier/newsfragments/434.misc

Whitespace-only changes.

src/towncrier/newsfragments/435.doc.rst

-1
This file was deleted.

src/towncrier/newsfragments/436.doc

-1
This file was deleted.

src/towncrier/newsfragments/438.doc

-1
This file was deleted.

src/towncrier/newsfragments/446.misc

Whitespace-only changes.

src/towncrier/newsfragments/447.misc

Whitespace-only changes.

0 commit comments

Comments
 (0)