Skip to content

0.3.0

Compare
Choose a tag to compare
@forman forman released this 26 Jan 16:02
· 226 commits to main since this release

New Contributors

Full Changelog: v0.2.0...v0.3.0

New in Version 0.3.0 (from 2024-01-26)

Enhancements

  • Allow for passing custom slice sources via the configuration.
    The new configuration setting slice_source is the name of a class
    derived from zappend.api.SliceSource or a function that creates an instance
    of zappend.api.SliceSource. If slice_source is given, slices passed to
    the zappend function or CLI command will be interpreted as parameter(s)
    passed to the constructor of the specified class or the factory function.
    [#27]

  • It is now possible to configure runtime profiling of the zappend
    processing using the new configuration setting profiling. [#39]

  • Added --version option to CLI. [#42]

  • Using sizes instead of dims attribute of xarray.Dataset in
    implementation code. [#25]

  • Enhanced documentation including docstrings of several Python API objects.

Fixes

  • Fixed a problem where the underlying i/o stream of a persistent slice dataset
    was closed immediately after opening the dataset. [#31]

  • Now logging ignored encodings on level DEBUG instead of WARNING because they
    occur very likely when processing NetCDF files.