diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cc86ec..57f7aeb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,30 @@ ### Changed +## [0.10.0] - 2024-12-19 + +### Added + +- New step_every filter when loading Res1D files (e.g. load every 'i'th time step) +- New quantity filter when loading Res1D files (e.g. load only specific quantities) +- Update notebook on working with large files for the new filters. +- Support for Python 3.13 +- Add Res1D.result_type property. + +### Fixed + +### Changed + +- Result plots now have gridlines by default. +- Names no longer show up on ResultLocations html repr (i.e. cleaner notebooks) +- Refactored Res1D.network and associated objects. +- Refactored Res1D static attributes. +- Xns11 is now a CrossSectionCollection (i.e. no longer needed to use Xns11.xsections) +- Refactored filters. +- Res1D.data is now an alias to the more explicit Res1D.result_data +- CrossSectionCollection.data is now an alias to the more explicit CrossSectionCollection.cross_section_data +- Updated documentation. + ## [0.9.1] - 2024-11-12 ### Added diff --git a/mikeio1d/__init__.py b/mikeio1d/__init__.py index 9e6664cc..9e0aeeeb 100644 --- a/mikeio1d/__init__.py +++ b/mikeio1d/__init__.py @@ -24,7 +24,7 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "0.9.1" +__version__ = "0.10.0" if "64" not in platform.architecture()[0]: raise Exception("This library has not been tested for a 32 bit system.") diff --git a/pyproject.toml b/pyproject.toml index 3753b68c..409dc711 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ exclude = ["notebooks", "tests", "images"] [project] name = "mikeio1d" -version = "0.9.1" +version = "0.10.0" description = "A package that uses the DHI MIKE1D .NET libraries to read res1d and xns11 files." readme = "README.md" requires-python = ">=3.9"