Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,15 @@ what's new document.
The appropriate contribution for a pull request might in fact be an addition or
change to an existing "What's New" entry.

Each contribution will ideally be written as a single concise bullet point
in a reStructuredText format. Where possible do not exceed **column 80** and
ensure that any subsequent lines of the same bullet point are aligned with the
first. The content should target an Iris user as the audience. The required
content, in order, is as follows:
Each contribution will ideally be written as a single concise entry using a
reStructuredText auto-enumerated list ``#.`` directive. Where possible do not
exceed **column 80** and ensure that any subsequent lines of the same entry are
aligned with the first. The content should target an Iris user as the audience.
The required content, in order, is as follows:

* Names of those who contributed the change. These should be their GitHub
user name. Link the name to their GitHub profile. E.g.
```@bjlittle <https://github.com/bjlittle>`_ and
`@tkknight <https://github.com/tkknight>`_ changed...``
```@tkknight <https://github.com/tkknight>`_ changed...``

* The new/changed behaviour

Expand All @@ -79,15 +78,14 @@ content, in order, is as follows:
* Pull request references, bracketed, following the final period. E.g.
``(:pull:`1111`, :pull:`9999`)``

* A trailing blank line (standard reStructuredText bullet format)
* A trailing blank line (standard reStructuredText list format)

For example::

* `@bjlittle <https://github.com/bjlittle>`_ and
`@tkknight <https://github.com/tkknight>`_ changed changed argument ``x``
to be optional in :class:`~iris.module.class` and
:meth:`iris.module.method`. This allows greater flexibility as requested in
:issue:`9999`. (:pull:`1111`, :pull:`9999`)
#. `@tkknight <https://github.com/tkknight>`_ changed changed argument ``x``
to be optional in :class:`~iris.module.class` and
:meth:`iris.module.method`. This allows greater flexibility as requested in
:issue:`9999`. (:pull:`1111`, :pull:`9999`)


The above example also demonstrates some of the possible syntax for including
Expand Down
Loading