From ba224e124e083d6b4761a97a3f6f438e85a9a001 Mon Sep 17 00:00:00 2001 From: Yalin Date: Tue, 15 Oct 2024 22:29:23 -0400 Subject: [PATCH] release new version --- CHANGELOG.rst | 27 +++++++++++++++++++++++++++ setup.py | 6 +++--- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c19ba3e8..e448f495 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,32 @@ Change Log This document records notable changes to `QSDsan `_. We aim to follow `Semantic Versioning `_. +`1.4.0`_ +-------- +- A lot of the updates have been focused on the dynamic simulation, now the open-loop Benchmark Simulation Model No. 2 (`BSM2 `_) configuration has been implemented with new process models and unit operation including + + - :class:`qsdsan.processes.ADM1p` + - :class:`qsdsan.processes.ADM1_p_extension` + - :class:`qsdsan.processes.ModifiedADM1` + - :class:`qsdsan.processes.mASM2d` + - :class:`qsdsan.sanunits.IdealClarifier` + - :class:`qsdsan.sanunits.PrimaryClarifier` + - :class:`qsdsan.sanunits.PrimaryClarifierBSM2` + - :class:`qsdsan.sanunits.GasExtractionMembrane` + - :class:`qsdsan.sanunits.Thickener` + - :class:`qsdsan.sanunits.Centrifuge` + - :class:`qsdsan.sanunits.Incinerator` + - :class:`qsdsan.sanunits.BatchExperiment` + - :class:`qsdsan.sanunits.PFR` + - :class:`qsdsan.sanunits.BeltThickener` + - :class:`qsdsan.sanunits.SludgeCentrifuge` + - :class:`qsdsan.sanunits.SludgeThickener` + +- New publications + + - Feng et al., *Environmental Science & Technology*, on the sustainability of `hydrothermal liquefaction (HTL) `_ for resource recovery from a range of wet organic wastes. + + `1.3.0`_ -------- - Enhance and use QSDsan's capacity for dynamic simulation for emerging technologies and benchmark configurations (see EXPOsan METAB and PM2 (on the algae branch, still under development) modules). @@ -185,6 +211,7 @@ Official release of ``QSDsan`` v1.0.0! .. _Trimmer et al.: https://doi.org/10.1021/acs.est.0c03296 .. Commit links +.. _1.4.0: https://github.com/QSD-Group/QSDsan/releases/tag/v1.4.0 .. _1.3.0: https://github.com/QSD-Group/QSDsan/releases/tag/v1.3.0 .. _1.2.0: https://github.com/QSD-Group/QSDsan/releases/tag/v1.2.0 .. _1.1.0: https://github.com/QSD-Group/QSDsan/releases/tag/v1.1.0 diff --git a/setup.py b/setup.py index 57034c09..2059114b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='qsdsan', packages=['qsdsan'], - version='1.3.1', + version='1.4.0', license='UIUC', author='Quantitative Sustainable Design Group', author_email='quantitative.sustainable.design@gmail.com', @@ -31,8 +31,8 @@ 'Repository': 'https://github.com/QSD-Group/QSDsan', }, install_requires=[ - 'biosteam>=2.37.4', - 'thermosteam>=0.35.1', + 'biosteam>=2.46.1', + 'thermosteam>=0.45.0', 'matplotlib>=3.3.2', 'pandas>=1.3.2', 'SALib>=1.4.5',