diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bc9263..b221389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.2.2] - Unreleased + +### Fixed + +- Fix _sorptivity_ and _ode_ functions not being properly exported. + ## [1.2.1] - 2024-02-19 ### Fixed @@ -216,6 +222,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 First public pre-release version. +[1.2.2]: https://github.com/gerlero/fronts/compare/v1.2.1...v1.2.2 [1.2.1]: https://github.com/gerlero/fronts/compare/v1.2.0...v1.2.1 [1.2.0]: https://github.com/gerlero/fronts/compare/v1.1.2...v1.2.0 [1.1.2]: https://github.com/gerlero/fronts/compare/v1.1.1...v1.1.2 diff --git a/fronts/__init__.py b/fronts/__init__.py index 4404bdd..dd58318 100644 --- a/fronts/__init__.py +++ b/fronts/__init__.py @@ -10,5 +10,5 @@ from ._inverse import inverse, sorptivity __all__ = ['solve', 'solve_flowrate', 'solve_from_guess', 'Solution', - 'inverse', 'sorptivity' 'ode', 'BaseSolution', 'o', 'do_dr', + 'inverse', 'sorptivity', 'ode', 'BaseSolution', 'o', 'do_dr', 'do_dt', 'r', 't', 'as_o']