Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use sentence case for headers in 'What's new' template #178

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 39 additions & 14 deletions run_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

WHATS_NEW_TEMPLATE = """
****************************
What's New In Python {version}
What's new in Python {version}
hugovk marked this conversation as resolved.
Show resolved Hide resolved
****************************

:Editor: TBD
Expand Down Expand Up @@ -100,8 +100,8 @@
so it's worth checking back even after reading earlier versions.


Summary -- Release highlights
=============================
Summary --- release highlights
==============================

.. This section singles out the most important changes in Python {version}.
Brevity is key.
Expand All @@ -111,40 +111,58 @@



New Features
New features
============



Other Language Changes
Other language changes
======================



New Modules
New modules
===========

* None yet.


Improved Modules
Improved modules
================

module_name
-----------

* TODO

.. Add improved modules above alphabetically, not here at the end.

Optimizations
=============

module_name
-----------

* TODO



Deprecated
==========

* module_name:
TODO


.. Add deprecations above alphabetically, not here at the end.
hugovk marked this conversation as resolved.
Show resolved Hide resolved

Removed
=======

module_name
-----------

* TODO


Porting to Python {version}
Expand All @@ -154,24 +172,31 @@
that may require changes to your code.


Build Changes
Build changes
=============


C API Changes
C API changes
=============

New Features
New features
------------

* TODO
Porting to Python {version}
----------------------

Deprecated
----------
* TODO

Removed
-------
Deprecated C APIs
-----------------

* TODO

.. Add C API deprecations above alphabetically, not here at the end.
hugovk marked this conversation as resolved.
Show resolved Hide resolved

Removed C APIs
--------------

"""

Expand Down