From 01d82386b4f34daf4a607fe8aaab637b6d7cce22 Mon Sep 17 00:00:00 2001 From: Philipp Rehner <69816385+prehner@users.noreply.github.com> Date: Thu, 23 Nov 2023 18:13:53 +0100 Subject: [PATCH] Release v0.5.1 (#201) --- CHANGELOG.md | 3 +++ Cargo.toml | 2 +- feos-core/CHANGELOG.md | 2 ++ feos-core/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f710657f..875e6058f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.1] - 2023-11-23 +- Python only: Release the changes introduced in `feos-core` 0.5.1. + ## [0.5.0] - 2023-10-20 ### Added - Added `IdealGasModel` enum that collects all implementors of the `IdealGas` trait. [#158](https://github.com/feos-org/feos/pull/158) diff --git a/Cargo.toml b/Cargo.toml index f0eaf23d9..0e389de5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feos" -version = "0.5.0" +version = "0.5.1" authors = ["Gernot Bauer ", "Philipp Rehner "] edition = "2021" readme = "README.md" diff --git a/feos-core/CHANGELOG.md b/feos-core/CHANGELOG.md index 8923724c2..a987dc6c2 100644 --- a/feos-core/CHANGELOG.md +++ b/feos-core/CHANGELOG.md @@ -5,6 +5,8 @@ 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). ## Unreleased + +## [0.5.1] - 2023-11-23 ### Fixed - Aligned how binary segment records are treated in Rust and Python. [#200](https://github.com/feos-org/feos/pull/200) diff --git a/feos-core/Cargo.toml b/feos-core/Cargo.toml index d843724a0..ef32d19a8 100644 --- a/feos-core/Cargo.toml +++ b/feos-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feos-core" -version = "0.5.0" +version = "0.5.1" authors = ["Gernot Bauer ", "Philipp Rehner