Skip to content

Commit

Permalink
Prepare 0.9.15.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
iainrussell committed Dec 18, 2024
1 parent bda2944 commit ccd39b9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog for cfgrib
====================

0.9.15.0 (2024-12-18)
---------------------

- Added `values_dtype` argument to `open_dataset()` to allow control over the type of numpy
array used for the values array (default is `np.dtype("float32")`). Usage:
``ds = xr.open_dataset("data.grib", engine="cfgrib", backend_kwargs={"values_dtype": np.dtype("float64")},)``
See `#407 <https://github.com/ecmwf/cfgrib/pull/407>`_.

0.9.14.1 (2024-09-12)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion cfgrib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.9.14.1"
__version__ = "0.9.15.0"

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

0 comments on commit ccd39b9

Please sign in to comment.