Skip to content

Commit 899bcea

Browse files
authored
polish CHANGES and add note about 0.6.1 (#138)
# Release 0.6.2 * polish CHANGES and add note about 0.6.1 * bumpversion 0.6.1 -> 0.6.2
1 parent d8711a2 commit 899bcea

File tree

2 files changed

+17
-13
lines changed

2 files changed

+17
-13
lines changed

CHANGES.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
What's new
22
==========
33

4-
0.6.2 (unreleased)
4+
0.6.2 (23-11-2021)
55
------------------
66

77
Bug fixes
88
~~~~~~~~~
9-
- The introduction of `sparse`, with `numba` under the hood, restricted input data to little-endian dtypes. In those cases, xESMF switches back to using scipy (:pull:`125`). By `Pascal Bourgault <https://github.com/aulemahal>`_
10-
- SpatialAverager did not compute the same weights as Regridder when source cell areas were not uniform (:pull:`128`). By `David Huard <https://github.com/huard>`_
9+
- The introduction of `sparse`, with `numba` under the hood, restricted input data to little-endian dtypes. For big-endian dtypes, xESMF will convert to little-endian, regrid and convert back (:pull:`135`). By `Pascal Bourgault <https://github.com/aulemahal>`_
10+
- ``SpatialAverager`` did not compute the same weights as ``Regridder`` when source cell areas were not uniform (:pull:`128`). By `David Huard <https://github.com/huard>`_
1111
- Refactor of how the regridding is called internally, to fix a bug with dask and sparse (:pull:`135`). By `Pascal Bourgault <https://github.com/aulemahal>`_
1212

1313
Internal changes
@@ -16,6 +16,7 @@ Internal changes
1616

1717
0.6.1 (23-09-2021)
1818
------------------
19+
Note that this version creates very large dask task graphs that can affect performance for large grids.
1920

2021
Internal changes
2122
~~~~~~~~~~~~~~~~

setup.cfg

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[bumpversion]
2+
current_version = 0.6.2
3+
14
[flake8]
25
exclude = doc
36
ignore =
@@ -7,13 +10,13 @@ select = B,C,E,F,W,T4,B9
710
extend-ignore = E203,E501,E402,W605
811

912
[isort]
10-
known_first_party=xesmf
11-
known_third_party=ESMF,cf_xarray,cftime,dask,numba,numpy,pytest,setuptools,shapely,sparse,xarray
12-
multi_line_output=3
13-
include_trailing_comma=True
14-
force_grid_wrap=0
15-
combine_as_imports=True
16-
line_length=100
17-
skip=
18-
doc/conf.py
19-
setup.py
13+
known_first_party = xesmf
14+
known_third_party = ESMF,cf_xarray,cftime,dask,numba,numpy,pytest,setuptools,shapely,sparse,xarray
15+
multi_line_output = 3
16+
include_trailing_comma = True
17+
force_grid_wrap = 0
18+
combine_as_imports = True
19+
line_length = 100
20+
skip =
21+
doc/conf.py
22+
setup.py

0 commit comments

Comments
 (0)