Skip to content

Commit ccd39b9

Browse files
committed
Prepare 0.9.15.0 release
1 parent bda2944 commit ccd39b9

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog for cfgrib
33
====================
44

5+
0.9.15.0 (2024-12-18)
6+
---------------------
7+
8+
- Added `values_dtype` argument to `open_dataset()` to allow control over the type of numpy
9+
array used for the values array (default is `np.dtype("float32")`). Usage:
10+
``ds = xr.open_dataset("data.grib", engine="cfgrib", backend_kwargs={"values_dtype": np.dtype("float64")},)``
11+
See `#407 <https://github.com/ecmwf/cfgrib/pull/407>`_.
12+
513
0.9.14.1 (2024-09-12)
614
---------------------
715

cfgrib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
__version__ = "0.9.14.1"
16+
__version__ = "0.9.15.0"
1717

1818
# cfgrib core API depends on the ECMWF ecCodes C-library only
1919
from .abc import Field, Fieldset, Index, MappingFieldset

0 commit comments

Comments
 (0)