Skip to content

Commit

Permalink
Merge pull request #360 from twisted/release-21.9.0
Browse files Browse the repository at this point in the history
Release 21.9.0
  • Loading branch information
adiroiban authored Feb 10, 2022
2 parents 0e6a479 + 4de07a7 commit e0d72c4
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 17 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,6 @@ jobs:
- name: CPython 3.5
tox: py35
action: 3.5
- name: CPython 3.6
tox: py36
action: 3.6
- name: CPython 3.7
tox: py37
action: 3.7
Expand All @@ -88,9 +85,6 @@ jobs:
- name: PyPy 2.7
tox: pypy27
action: pypy-2.7
- name: PyPy 3.6
tox: pypy36
action: pypy-3.6
- name: PyPy 3.7
tox: pypy37
action: pypy-3.7
Expand Down Expand Up @@ -176,7 +170,6 @@ jobs:
needs:
- build
- test
- check
steps:
- uses: actions/checkout@v2

Expand Down
14 changes: 12 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,19 @@ Step-by-step

- Edit ``src/towncrier/_version.py`` such as ``__version__ = Version('towncrier', 19, 9, 0)`` to remove the release candidate indication.

- Return to the towncrier build step and continue.
- Manually update the NEWS.rst by removing the `.rcN` version and update the release date.

- If the final release has been completed, continue below.
- Disable the actual check for `tox -e check-newsfragment` so that you will have a green test run.

- Commit and push the changes to trigger the CI tests and make sure all are green.

- Tag as ``19.9.0`` and push the tag to the primary repository.

- This will result in another build which will publish to PyPI for the final release.

- Confirm the presence of the release on PyPI.

- If the final release has been completed, re-enable `tox -e check-newsfragment`.

- Increment the patch version by one and set to a development version.

Expand Down
23 changes: 23 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

.. towncrier release notes start
towncrier 21.9.0 (2022-02-04)
=============================

Features
--------

- towncrier --version` was added to the command line interface to show the product version. (`#339 <https://github.com/hawkowl/towncrier/issues/339>`_)
- Support Toml v1 syntax with tomli on Python 3.6+ (`#354 <https://github.com/hawkowl/towncrier/issues/354>`_)


Bugfixes
--------

- Stop writing title twice when ``title_format`` is specified. (`#346 <https://github.com/hawkowl/towncrier/issues/346>`_)
- Disable universal newlines when reading TOML (`#359 <https://github.com/hawkowl/towncrier/issues/359>`_)


Misc
----

- `#332 <https://github.com/hawkowl/towncrier/issues/332>`_, `#333 <https://github.com/hawkowl/towncrier/issues/333>`_, `#334 <https://github.com/hawkowl/towncrier/issues/334>`_, `#338 <https://github.com/hawkowl/towncrier/issues/338>`_


towncrier 21.3.0 (2021-04-02)
=============================

Expand Down
2 changes: 1 addition & 1 deletion src/towncrier/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("towncrier", 21, 3, 1, dev=0)
__version__ = Version("towncrier", 21, 9, 1, dev=0)
__all__ = ["__version__"]
Empty file.
1 change: 0 additions & 1 deletion src/towncrier/newsfragments/333.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/334.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/338.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/339.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/346.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/354.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion src/towncrier/newsfragments/359.bugfix.rst

This file was deleted.

0 comments on commit e0d72c4

Please sign in to comment.