|
2 | 2 | History |
3 | 3 | ======= |
4 | 4 |
|
| 5 | +v0.7.3 (06 November 2024) |
| 6 | +------------------------- |
| 7 | + |
| 8 | +This patch release updates the NumPy constraint to ``numpy >=2.0.0,<3.0.0`` to ensure |
| 9 | +compatibility with NumPy 2.0 (which introduces breaking changes). It also fixes a bug |
| 10 | +in the ``get_bounds()`` method where bounds could not be found on supported non-CF axes |
| 11 | +(e.g., "latitude", "longitude", etc.) even with the ``"bounds"`` attribute set on the |
| 12 | +axes. |
| 13 | + |
| 14 | +Bug Fixes |
| 15 | +~~~~~~~~~ |
| 16 | + |
| 17 | +- Update ``get_bounds()`` to support mappable non-CF axes using ``"bounds"`` attr by |
| 18 | + `Tom Vo`_ in https://github.com/xCDAT/xcdat/pull/708 |
| 19 | + |
| 20 | +Documentation |
| 21 | +~~~~~~~~~~~~~ |
| 22 | + |
| 23 | +- Add link to SciPy talk in docs by `Tom Vo`_ in https://github.com/xCDAT/xcdat/pull/704 |
| 24 | + |
| 25 | +DevOps |
| 26 | +~~~~~~~~~~~~ |
| 27 | + |
| 28 | +- Adopt ``ruff`` as the central tool for linting, formatting, and import |
| 29 | + sorting by `Tom Vo`_ in https://github.com/xCDAT/xcdat/pull/702 |
| 30 | +- Update numpy constraint to ``>=2.0.0,<3.0.0`` by `Tom Vo`_ and `Xylar Asay-Davis`_ in |
| 31 | + https://github.com/xCDAT/xcdat/pull/711, |
| 32 | + https://github.com/xCDAT/xcdat/pull/712 |
| 33 | +- Replace ``setup.py`` with ``pyproject.toml`` for modern Python packaging by |
| 34 | + `Tom Vo`_ and `Xylar Asay-Davis`_ in https://github.com/xCDAT/xcdat/pull/712 |
| 35 | + |
| 36 | +**Full Changelog**: https://github.com/xCDAT/xcdat/compare/v0.7.2...v0.7.3 |
| 37 | + |
| 38 | + |
5 | 39 | v0.7.2 (02 October 2024) |
6 | 40 | ------------------------ |
7 | 41 |
|
@@ -65,10 +99,10 @@ notebooks and documentation are up to date with the latest and relevant informat |
65 | 99 | Bug Fixes |
66 | 100 | ~~~~~~~~~ |
67 | 101 |
|
68 | | -- Fixes regrid2 mapping output to input ordering by `Jason Boutte`_ |
69 | | - in https://github.com/xCDAT/xcdat/pull/653 |
70 | | -- Update ``add_missing_bounds()`` to convert ``np.timedelta64`` to ``pd.Timedelta`` |
71 | | - to support Xarray's datetime component accessor `_Jiwoo Lee` in https://github.com/xCDAT/xcdat/pull/660 |
| 102 | +- Fixes regrid2 mapping output to input ordering by `Jason Boutte`_ |
| 103 | + in https://github.com/xCDAT/xcdat/pull/653 |
| 104 | +- Update ``add_missing_bounds()`` to convert ``np.timedelta64`` to ``pd.Timedelta`` |
| 105 | + to support Xarray's datetime component accessor `_Jiwoo Lee` in https://github.com/xCDAT/xcdat/pull/660 |
72 | 106 |
|
73 | 107 | Documentation |
74 | 108 | ~~~~~~~~~~~~~ |
@@ -805,3 +839,4 @@ DevOps |
805 | 839 | .. _Jill Chengzhu Zhang: https://github.com/chengzhuzhang |
806 | 840 | .. _Paul Durack: https://github.com/durack1 |
807 | 841 | .. _Ana Ordonez: https://github.com/acordonez |
| 842 | +.. _Xylar Asay-Davis: https://github.com/xylar |
0 commit comments