diff --git a/HISTORY.md b/HISTORY.md index ff8b1e9..2fbedb6 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,20 @@ # History +## 0.1.0 (2022-10-18) + +### Features + +- Add additional models + - add assemblies: `Turbofan`, `FanModule`, `Inlet`, `MixerFluid`/`MixerShaft`, `Nacelle`, `Nozzle`, `Channel` + - add various standalone and base models: `FanDuctGeom`, `TurbofanGeom`, etc. +- Improve gas thermodynamic modeling (`IdealGas`) + +### Code quality & packaging + +- Add documentation using `sphinx` (incl. demo notebook rendering using `nbsphinx`) +- Improve code quality using `black`, `isosort` and `flake8` +- Improve tests coverage + ## 0.0.1 (2022-05-25) ### Features diff --git a/pyturbo/_version.py b/pyturbo/_version.py index 4f2e42f..14c5aa1 100644 --- a/pyturbo/_version.py +++ b/pyturbo/_version.py @@ -1,4 +1,4 @@ # Copyright (C) 2022, twiinIT # SPDX-License-Identifier: BSD-3-Clause -__version__ = "0.0.1" +__version__ = "0.1.0"