You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/conf.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -242,7 +242,7 @@
242
242
Theme by the <a href="https://ebp.jupyterbook.org">Executable Book Project</a></p>""",
243
243
twitter_url="https://twitter.com/xarray_dev",
244
244
icon_links=[], # workaround for pydata/pydata-sphinx-theme#1220
245
-
announcement="🍾 <a href='https://github.com/pydata/xarray/discussions/8462'>Xarrayis now 10 years old!</a> 🎉",
245
+
announcement="<a href='https://forms.gle/KEq7WviCdz9xTaJX6'>Xarray's 2024 User Survey is live now. Please take ~5 minutes to fill it out and help us improve Xarray.</a>",
Copy file name to clipboardexpand all lines: doc/whats-new.rst
+43-17
Original file line number
Diff line number
Diff line change
@@ -15,22 +15,14 @@ What's New
15
15
np.random.seed(123456)
16
16
17
17
18
-
.. _whats-new.2024.05.1:
18
+
.. _whats-new.2024.06.1:
19
19
20
-
v2024.06 (unreleased)
20
+
v2024.06.1 (unreleased)
21
21
-----------------------
22
22
23
23
New Features
24
24
~~~~~~~~~~~~
25
25
26
-
Performance
27
-
~~~~~~~~~~~
28
-
29
-
- Small optimization to the netCDF4 and h5netcdf backends (:issue:`9058`, :pull:`9067`).
30
-
By `Deepak Cherian <https://github.com/dcherian>`_.
31
-
- Small optimizations to help reduce indexing speed of datasets (:pull:`9002`).
32
-
By `Mark Harfouche <https://github.com/hmaarrfk>`_.
33
-
34
26
35
27
Breaking changes
36
28
~~~~~~~~~~~~~~~~
@@ -40,14 +32,45 @@ Deprecations
40
32
~~~~~~~~~~~~
41
33
42
34
35
+
Bug fixes
36
+
~~~~~~~~~
37
+
38
+
39
+
Documentation
40
+
~~~~~~~~~~~~~
41
+
42
+
43
+
Internal Changes
44
+
~~~~~~~~~~~~~~~~
45
+
46
+
47
+
.. _whats-new.2024.06.0:
48
+
49
+
v2024.06.0 (Jun 13, 2024)
50
+
-------------------------
51
+
This release brings various performance optimizations and compatibility with the upcoming numpy 2.0 release.
52
+
53
+
Thanks to the 22 contributors to this release:
54
+
Alfonso Ladino, David Hoese, Deepak Cherian, Eni Awowale, Ilan Gold, Jessica Scheick, Joe Hamman, Justus Magin, Kai Mühlbauer, Mark Harfouche, Mathias Hauser, Matt Savoie, Maximilian Roos, Mike Thramann, Nicolas Karasiak, Owen Littlejohns, Paul Ockenfuß, Philippe THOMY, Scott Henderson, Spencer Clark, Stephan Hoyer and Tom Nicholas
55
+
56
+
Performance
57
+
~~~~~~~~~~~
58
+
59
+
- Small optimization to the netCDF4 and h5netcdf backends (:issue:`9058`, :pull:`9067`).
60
+
By `Deepak Cherian <https://github.com/dcherian>`_.
61
+
- Small optimizations to help reduce indexing speed of datasets (:pull:`9002`).
62
+
By `Mark Harfouche <https://github.com/hmaarrfk>`_.
63
+
- Performance improvement in `open_datatree` method for Zarr, netCDF4 and h5netcdf backends (:issue:`8994`, :pull:`9014`).
64
+
By `Alfonso Ladino <https://github.com/aladinor>`_.
65
+
66
+
43
67
Bug fixes
44
68
~~~~~~~~~
45
69
- Preserve conversion of timezone-aware pandas Datetime arrays to numpy object arrays
46
70
(:issue:`9026`, :pull:`9042`).
47
71
By `Ilan Gold <https://github.com/ilan-gold>`_.
48
-
49
72
- :py:meth:`DataArrayResample.interpolate` and :py:meth:`DatasetResample.interpolate` method now
50
-
support aribtrary kwargs such as ``order`` for polynomial interpolation. (:issue:`8762`).
73
+
support arbitrary kwargs such as ``order`` for polynomial interpolation (:issue:`8762`).
51
74
By `Nicolas Karasiak <https://github.com/nkarasiak>`_.
52
75
53
76
- Allow chunking for arrays with duplicated dimension names (:issue:`8759`, :pull:`9099`).
@@ -56,16 +79,18 @@ Bug fixes
56
79
57
80
Documentation
58
81
~~~~~~~~~~~~~
59
-
- Add link to CF Conventions on packed data and sentence on type determination in doc/user-guide/io.rst (:issue:`9041`, :pull:`9045`).
82
+
- Add link to CF Conventions on packed data and sentence on type determination in the I/O userguide (:issue:`9041`, :pull:`9045`).
60
83
By `Kai Mühlbauer <https://github.com/kmuehlbauer>`_.
61
84
62
85
63
86
Internal Changes
64
87
~~~~~~~~~~~~~~~~
65
88
- Migrates remainder of ``io.py`` to ``xarray/core/datatree_io.py`` and
66
-
``TreeAttrAccessMixin`` into ``xarray/core/common.py`` (:pull:`9011`)
89
+
``TreeAttrAccessMixin`` into ``xarray/core/common.py`` (:pull:`9011`).
67
90
By `Owen Littlejohns <https://github.com/owenlittlejohns>`_ and
68
91
`Tom Nicholas <https://github.com/TomNicholas>`_.
92
+
- Compatibility with numpy 2 (:issue:`8844`, :pull:`8854`, :pull:`8946`).
93
+
By `Justus Magin <https://github.com/keewis>`_ and `Stephan Hoyer <https://github.com/shoyer>`_.
69
94
70
95
71
96
.. _whats-new.2024.05.0:
@@ -124,8 +149,8 @@ Bug fixes
124
149
<https://github.com/pandas-dev/pandas/issues/56147>`_ to
125
150
:py:func:`pandas.date_range`, date ranges produced by
126
151
:py:func:`xarray.cftime_range` with negative frequencies will now fall fully
127
-
within the bounds of the provided start and end dates (:pull:`8999`). By
128
-
`Spencer Clark <https://github.com/spencerkclark>`_.
152
+
within the bounds of the provided start and end dates (:pull:`8999`).
153
+
By `Spencer Clark <https://github.com/spencerkclark>`_.
129
154
130
155
Internal Changes
131
156
~~~~~~~~~~~~~~~~
@@ -150,7 +175,8 @@ Internal Changes
150
175
- ``transpose``, ``set_dims``, ``stack`` & ``unstack`` now use a ``dim`` kwarg
151
176
rather than ``dims`` or ``dimensions``. This is the final change to make xarray methods
152
177
consistent with their use of ``dim``. Using the existing kwarg will raise a
153
-
warning. By `Maximilian Roos <https://github.com/max-sixty>`_
178
+
warning.
179
+
By `Maximilian Roos <https://github.com/max-sixty>`_
0 commit comments