diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac8537b..d838a7d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # [Unreleased](https://github.com/pybamm-team/liionpack/) +# [v0.3.2](https://github.com/pybamm-team/PyBaMM/tree/v0.3.2) - 2022-07-01 + +## Bug fixes + +- Fix logger message duplication ([#156](https://github.com/pybamm-team/liionpack/pull/156)) +- Fix build after changes to variable names in PyBaMM concerning initial stoich ([#159](https://github.com/pybamm-team/liionpack/pull/159)) +- Pin version of protobuf to fix docs ([#163](https://github.com/pybamm-team/liionpack/pull/163)) + +## Breaking changes + +- Remove support for dask as it reduces dependencies and does not perform as well as ray for our use case ([#160](https://github.com/pybamm-team/liionpack/pull/160)) + # [v0.3.1](https://github.com/pybamm-team/PyBaMM/tree/v0.3.1) - 2022-05-24 ## Features diff --git a/liionpack/__init__.py b/liionpack/__init__.py index bd9acf08..70ab858a 100644 --- a/liionpack/__init__.py +++ b/liionpack/__init__.py @@ -44,4 +44,4 @@ from .solvers import GenericActor from .solvers import RayActor -__version__ = "0.3.1" +__version__ = "0.3.2"