Skip to content

Commit 165d496

Browse files
authored
0.18.1 release notes (pydata#5340)
* 0.18.1 release notes
1 parent 24c6152 commit 165d496

File tree

2 files changed

+16
-17
lines changed

2 files changed

+16
-17
lines changed

HOW_TO_RELEASE.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,11 @@ upstream https://github.com/pydata/xarray (push)
2525
```
2626
3. Add a list of contributors with:
2727
```sh
28-
git log "$(git tag --sort="v:refname" | sed -n 'x;$p').." --format=%aN | sort -u | perl -pe 's/\n/$1, /'
29-
```
30-
or by substituting the _previous_ release in {0.X.Y-1}:
31-
```sh
32-
git log v{0.X.Y-1}.. --format=%aN | sort -u | perl -pe 's/\n/$1, /'
28+
git log "$(git tag --sort="v:refname" | tail -1).." --format=%aN | sort -u | perl -pe 's/\n/$1, /'
3329
```
3430
This will return the number of contributors:
3531
```sh
36-
git log v{0.X.Y-1}.. --format=%aN | sort -u | wc -l
32+
git log $(git tag --sort="v:refname" | tail -1).. --format=%aN | sort -u | wc -l
3733
```
3834
4. Write a release summary: ~50 words describing the high level features. This
3935
will be used in the release emails, tweets, GitHub release notes, etc.

doc/whats-new.rst

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,27 @@ What's New
1616
1717
.. _whats-new.0.18.1:
1818

19-
v0.18.1 (unreleased)
20-
--------------------
19+
v0.18.1 (18 May 2021)
20+
---------------------
21+
22+
This release is intended as a small patch release to be compatible with the new
23+
2021.5.0 ``dask.distributed`` release. It also includes a new
24+
``drop_duplicates`` method, some documentation improvements, the beginnings of
25+
our internal Index refactoring, and some bug fixes.
26+
27+
Thank you to all 16 contributors!
28+
29+
Anderson Banihirwe, Andrew, Benoit Bovy, Brewster Malevich, Giacomo Caria,
30+
Illviljan, James Bourbeau, Keewis, Maximilian Roos, Ravin Kumar, Stephan Hoyer,
31+
Thomas Nicholas, Tom Nicholas, Zachary Moon.
2132

2233
New Features
2334
~~~~~~~~~~~~
2435

2536
- Implement :py:meth:`DataArray.drop_duplicates`
2637
to remove duplicate dimension values (:pull:`5239`).
2738
By `Andrew Huang <https://github.com/ahuang11>`_.
28-
- allow passing ``combine_attrs`` strategy names to the ``keep_attrs`` parameter of
39+
- Allow passing ``combine_attrs`` strategy names to the ``keep_attrs`` parameter of
2940
:py:func:`apply_ufunc` (:pull:`5041`)
3041
By `Justus Magin <https://github.com/keewis>`_.
3142
- :py:meth:`Dataset.interp` now allows interpolation with non-numerical datatypes,
@@ -34,14 +45,6 @@ New Features
3445
- Raise more informative error when decoding time variables with invalid reference dates.
3546
(:issue:`5199`, :pull:`5288`). By `Giacomo Caria <https://github.com/gcaria>`_.
3647

37-
Breaking changes
38-
~~~~~~~~~~~~~~~~
39-
40-
41-
Deprecations
42-
~~~~~~~~~~~~
43-
44-
4548
Bug fixes
4649
~~~~~~~~~
4750

0 commit comments

Comments
 (0)