Skip to content

Commit 0224edb

Browse files
committed
tidying for v1.11.2.0
1 parent 170ca84 commit 0224edb

30 files changed

Lines changed: 259 additions & 259 deletions

Changelog.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Version NEXTVERSION
2-
-------------------
1+
Version 1.11.2.0
2+
----------------
33

4-
**2024-12-??**
4+
**2025-01-28**
55

66
* Introduction of `dask` for all data manipulations
77
https://github.com/NCAS-CMS/cfdm/issues/317)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ inspecting it:
7474
The ``cfdm`` package can:
7575

7676
* read field and domain constructs from netCDF and CDL datasets with a
77-
choice of netCDF backends,
77+
choice of netCDF backends,and in local, http, and s3 locations,
7878
* be fully flexible with respect to HDF5 chunking,
7979
* create new field and domain constructs in memory,
8080
* write and append field and domain constructs to netCDF datasets on disk,

cfdm/cfdmimplementation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ def nc_set_group_attributes(self, field, attributes):
11721172
def nc_set_hdf5_chunksizes(self, data, chunksizes):
11731173
"""Set the HDF5 chunking strategy for the data.
11741174
1175-
..versionadded:: (cfdm) NEXTVERSION
1175+
..versionadded:: (cfdm) 1.11.2.0
11761176
11771177
:Parameters:
11781178
@@ -2316,7 +2316,7 @@ def initialise_NetCDF4Array(self, **kwargs):
23162316
kwargs: optional
23172317
Initialisation parameters to pass to the new instance.
23182318
2319-
.. versionadded:: (cfdm) NEXTVERSION
2319+
.. versionadded:: (cfdm) 1.11.2.0
23202320
23212321
:Returns:
23222322
@@ -2329,7 +2329,7 @@ def initialise_NetCDF4Array(self, **kwargs):
23292329
def initialise_H5netcdfArray(self, **kwargs):
23302330
"""Return a `H5netcdfArray` instance.
23312331
2332-
.. versionadded:: (cfdm) NEXTVERSION
2332+
.. versionadded:: (cfdm) 1.11.2.0
23332333
23342334
:Parameters:
23352335

cfdm/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
"""
1313

14-
__date__ = "2024-??-??"
14+
__date__ = "2025-01-28"
1515
__cf_version__ = "1.11"
1616
__version__ = "1.11.2.0"
1717

cfdm/core/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def environment(display=True, paths=True):
3636
Python: 3.11.4
3737
packaging: 23.0
3838
numpy: 1.25.2
39-
cfdm.core: NEXTVERSION
39+
cfdm.core: 1.11.2.0
4040
4141
"""
4242
import numpy as np

cfdm/data/creation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def to_dask(array, chunks, **from_array_options):
99
"""Create a `dask` array.
1010
11-
.. versionadded:: (cfdm) NEXTVERSION
11+
.. versionadded:: (cfdm) 1.11.2.0
1212
1313
:Parameters:
1414

cfdm/data/dask_utils.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def cfdm_to_memory(a):
1212
"""Return an in-memory version of *a*.
1313
14-
.. versionadded:: (cfdm) NEXTVERSION
14+
.. versionadded:: (cfdm) 1.11.2.0
1515
1616
:Parameters:
1717
@@ -34,7 +34,7 @@ def cfdm_to_memory(a):
3434
def cfdm_filled(a, fill_value=None):
3535
"""Replace masked elements with a fill value.
3636
37-
.. versionadded:: (cfdm) NEXTVERSION
37+
.. versionadded:: (cfdm) 1.11.2.0
3838
3939
:Parameters:
4040
@@ -68,7 +68,7 @@ def cfdm_harden_mask(a):
6868
6969
Has no effect if the array is not a masked array.
7070
71-
.. versionadded:: (cfdm) NEXTVERSION
71+
.. versionadded:: (cfdm) 1.11.2.0
7272
7373
:Parameters:
7474
@@ -98,7 +98,7 @@ def cfdm_soften_mask(a):
9898
9999
Has no effect if the array is not a masked array.
100100
101-
.. versionadded:: (cfdm) NEXTVERSION
101+
.. versionadded:: (cfdm) 1.11.2.0
102102
103103
:Parameters:
104104
@@ -144,7 +144,7 @@ def cfdm_where(array, condition, x, y, hardmask):
144144
.. note:: This function sets the mask hardness of the output
145145
array appropriately.
146146
147-
.. versionadded:: (cfdm) NEXTVERSION
147+
.. versionadded:: (cfdm) 1.11.2.0
148148
149149
:Parameters:
150150

0 commit comments

Comments
 (0)