Skip to content

Commit aa767ba

Browse files
committed
Added contributor statistics and names
1 parent f294168 commit aa767ba

File tree

1 file changed

+80
-16
lines changed

1 file changed

+80
-16
lines changed

docs/whatsnew/6.1.rst

Lines changed: 80 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,32 @@ the 6.0 release.
1212

1313
In particular, this release includes:
1414

15-
* Upgraded the minimum required version of Python to 3.10
15+
* :ref:`whatsnew-6.1-minimum-python`
16+
* :ref:`whatsnew-6.1-angular-separations`
17+
* :ref:`whatsnew-6.1-ascii-default-int-columns-as-int64`
18+
* :ref:`whatsnew-6.1-copy-semantics`
19+
* :ref:`whatsnew-6.1-cosmology-dataclass`
1620

17-
In addition to these major changes, Astropy v6.1 includes a large number of
21+
In addition to these major changes, Astropy 6.1 includes a large number of
1822
smaller improvements and bug fixes, which are described in the :ref:`changelog`.
1923
By the numbers:
2024

21-
* X issues have been closed since v6.0
22-
* X pull requests have been merged since v6.0
23-
* X distinct people have contributed code
25+
* 723 commits have been added since 6.0
26+
* 172 issues have been closed since 6.0
27+
* 276 pull requests have been merged since 6.0
28+
* 51 people have contributed since 6.0
29+
* 14 of which are new contributors
2430

31+
.. _whatsnew-6.1-minimum-python:
2532

26-
Minimum Python Version
27-
======================
33+
Updated minimum Python version to 3.10
34+
======================================
2835

2936
The minimum required version of Python has been upgraded to 3.10. This is in line with
3037
the `NumPy deprecation policy
3138
<https://numpy.org/neps/nep-0029-deprecation_policy.html>`_.
3239

40+
.. _whatsnew-6.1-angular-separations:
3341

3442
Order-dependent angular separations now come with warnings
3543
==========================================================
@@ -107,8 +115,8 @@ as string columns. The new default behavior is consistent with ``numpy`` v2 and
107115

108116
.. _whatsnew-6.1-copy-semantics:
109117

110-
Copy semantics
111-
==============
118+
Changes to semantics of ``copy=`` keyword arguments
119+
===================================================
112120

113121
Public APIs that expose a ``copy`` argument and that previously set ``False``
114122
as a default value now use ``None`` instead if ``numpy`` v2 or newer is installed.
@@ -133,12 +141,10 @@ as follow
133141

134142
COPY_IF_NEEDED = False if np.__version__.startswith("1.") else None
135143

144+
.. _whatsnew-6.1-cosmology-dataclass:
136145

137-
Updates to `~astropy.cosmology`
138-
===============================
139-
140-
|Cosmology| as a :func:`~dataclasses.dataclass`
141-
-----------------------------------------------
146+
|Cosmology| is now a :func:`~dataclasses.dataclass`
147+
===================================================
142148

143149
The :class:`~astropy.cosmology.Cosmology` class is
144150
now a :func:`~dataclasses.dataclass`. This means that the :mod:`dataclasses` machinery
@@ -163,9 +169,67 @@ using :func:`~dataclasses.make_dataclass`::
163169
>>> [f.name for f in fields(NewC)]
164170
['name', 'meta', 'newfield']
165171

166-
167172
Full change log
168173
===============
169174

170-
To see a detailed list of all changes in version v6.0, including changes in
175+
To see a detailed list of all changes in version 6.1, including changes in
171176
API, please see the :ref:`changelog`.
177+
178+
Contributors to the 6.1 release
179+
===============================
180+
181+
The people who have contributed to the code for this release are:
182+
183+
.. hlist::
184+
:columns: 4
185+
186+
- Adam Ginsburg
187+
- Albert Y. Shih
188+
- Chiara Marmo
189+
- Clément Robert
190+
- Derek Homeier
191+
- Eduardo Olinto *
192+
- Eero Vaher
193+
- Felipe Gameleira *
194+
- Gordon Gibb *
195+
- Hans Moritz Günther
196+
- Henry Schreiner *
197+
- Hélvio Peixoto
198+
- James Davies
199+
- Jero Bado
200+
- Jo Bovy
201+
- Kyle Conroy
202+
- Larry Bradley
203+
- Leo Singer
204+
- Manodeep Sinha
205+
- Manon Marchand
206+
- Marcello Nascif
207+
- Mark Taylor
208+
- Marten van Kerkwijk
209+
- Matteo Bachetti
210+
- Maximilian Linhoff
211+
- Michiel De Wilde *
212+
- Mihai Cara
213+
- Mridul Seth *
214+
- Nathaniel Starkman
215+
- Nick Murphy
216+
- Ole Streicher
217+
- Pey Lian Lim
218+
- Piyush Sharma *
219+
- Porter Averett *
220+
- Prajwel Joseph
221+
- Robert Queenin *
222+
- Sam Holt *
223+
- Sam Lee
224+
- Sam Van Kooten
225+
- Shaheer Ahmad *
226+
- Simon Conseil
227+
- Stephen Bailey *
228+
- Stuart Littlefair
229+
- Tanvi Pooranmal Meena *
230+
- Thomas Robitaille
231+
- Tom Aldcroft
232+
- William Jamieson
233+
- omahs *
234+
235+
Where a * indicates that this release contains their first contribution to astropy.

0 commit comments

Comments
 (0)