diff --git a/Project.toml b/Project.toml index 9ee51bce..f6b58be6 100644 --- a/Project.toml +++ b/Project.toml @@ -3,7 +3,7 @@ uuid = "85f8d34a-cbdd-5861-8df4-14fed0d494ab" keywords = ["netcdf", "climate and forecast conventions", "oceanography", "meteorology", "climatology", "opendap"] license = "MIT" desc = "Load and create NetCDF files in Julia" -version = "0.14.0" +version = "0.14.1" [deps] CFTime = "179af706-886a-5703-950a-314cd64e0468" diff --git a/docs/src/other.md b/docs/src/other.md index 96788da6..d3ab9f3d 100644 --- a/docs/src/other.md +++ b/docs/src/other.md @@ -277,7 +277,7 @@ Float32(16_777_217) == 16_777_217 # false Float64(9_007_199_254_740_993) == 9_007_199_254_740_993 # false ``` -`NaN` should be used for an array of dates, character or strings as it will result in an array with the element type `Any` following julia's promotion rules. +`NaN` should not be used for an array of dates, character or strings as it will result in an array with the element type `Any` following julia's promotion rules. The use of `missing` as fill value, is thus preferable in the general case.