From b5eef696661e5940356ba692c548fc7c0de7dc06 Mon Sep 17 00:00:00 2001 From: Ian Bell <ian.bell@nist.gov> Date: Wed, 15 Jun 2022 10:55:04 -0600 Subject: [PATCH] Fix missing include, ready for 0.9 it seems --- README.md | 6 ++++++ interface/multifluid_shared.hpp | 1 + interface/teqpversion.hpp | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e112ec4..70195a2 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,12 @@ Written by Ian Bell, NIST. [](https://badge.fury.io/py/teqp) +* 0.9.0 : + + * Add ability to obtain ancillaries for multifluid model (``see teqp/models/multifluid_ancillaries.hpp``) or the ``build_ancillaries`` method in python + + * Enable ability to use multiprecision with PC-SAFT + * 0.8.1 : * Replace the ``get_Ar20`` function that was erroneously removed diff --git a/interface/multifluid_shared.hpp b/interface/multifluid_shared.hpp index 3830b03..6864d23 100644 --- a/interface/multifluid_shared.hpp +++ b/interface/multifluid_shared.hpp @@ -1,6 +1,7 @@ #pragma once #include "teqp/exceptions.hpp" +#include "teqp/models/multifluid_ancillaries.hpp" template<typename Model, typename Wrapper> void add_multifluid_methods(Wrapper &wMF){ diff --git a/interface/teqpversion.hpp b/interface/teqpversion.hpp index 635c777..6741ff6 100644 --- a/interface/teqpversion.hpp +++ b/interface/teqpversion.hpp @@ -1,2 +1,2 @@ #include <string> -const std::string TEQPVERSION = "0.8.1.dev0"; \ No newline at end of file +const std::string TEQPVERSION = "0.9.0"; \ No newline at end of file -- GitLab