Skip to content

Commit e636242

Browse files
authored
Release v0.7.0 (#246)
1 parent a2c3176 commit e636242

File tree

15 files changed

+32
-18
lines changed

15 files changed

+32
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.7.0] - 2024-05-21
810
### Added
911
- Added SAFT-VR Mie equation of state. [#237](https://github.com/feos-org/feos/pull/237)
1012
- Added ePC-SAFT equation of state. [#229](https://github.com/feos-org/feos/pull/229)

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>", "Philipp Rehner <prehner@ethz.ch>"]
55
edition = "2021"
66
readme = "README.md"
@@ -24,9 +24,9 @@ crate-type = ["rlib", "cdylib"]
2424
[dependencies]
2525
quantity = { version = "0.8", optional = true }
2626
num-dual = "0.9"
27-
feos-core = { version = "0.6", path = "feos-core" }
28-
feos-dft = { version = "0.6", path = "feos-dft", optional = true }
29-
feos-derive = { version = "0.4", path = "feos-derive" }
27+
feos-core = { version = "0.7", path = "feos-core" }
28+
feos-dft = { version = "0.7", path = "feos-dft", optional = true }
29+
feos-derive = { version = "0.5", path = "feos-derive" }
3030
numpy = { version = "0.21", optional = true }
3131
ndarray = { version = "0.15", features = ["approx"] }
3232
petgraph = { version = "0.6", optional = true }
@@ -38,7 +38,7 @@ serde_json = "1.0"
3838
lazy_static = { version = "1.4", optional = true }
3939
indexmap = "2.0"
4040
rayon = { version = "1.7", optional = true }
41-
itertools = "0.12"
41+
itertools = "0.13"
4242
typenum = "1.16"
4343

4444
[dependencies.pyo3]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ The following models are currently published as part of the `FeOs` framework
4343
|`saftvrqmie`|equation of state for quantum fluids and mixtures|||
4444
|`saftvrmie`|statistical associating fluid theory for variable range interactions of Mie form|||
4545

46-
The list is being expanded continuously. Currently under development are implementations of ePC-SAFT and a Helmholtz energy functional for the UV theory.
46+
The list is being expanded continuously. Currently under development are implementations of Helmholtz energy functionals for the UV theory and for SAFT-VR Mie.
4747

4848
Other public repositories that implement models within the `FeOs` framework, but are currently not part of the `feos` Python package, are
4949

feos-core/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## Unreleased
8+
9+
## [0.7.0] - 2024-05-21
810
### Added
911
- Added specific isochoric and isobaric heat capacities to the Python interface. [#223](https://github.com/feos-org/feos/pull/223))
1012
- Added `to_dict` method for `PyStateVec`. [#224](https://github.com/feos-org/feos/pull/224)
@@ -29,11 +31,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2931
- Updated `numpy` and `PyO3` dependencies to 0.21. [#238](https://github.com/feos-org/feos/pull/238)
3032

3133

32-
## [0.6.1] 2024-01-11
34+
## [0.6.1] - 2024-01-11
3335
### Fixed
3436
- Improved convergence of `tp_flash` for certain edge cases. [#219](https://github.com/feos-org/feos/pull/219)
3537

36-
## [0.6.0] 2023-12-19
38+
## [0.6.0] - 2023-12-19
3739
### Added
3840
- Added `EquationOfState::ideal_gas` to initialize an equation of state that only consists of an ideal gas contribution. [#204](https://github.com/feos-org/feos/pull/204)
3941
- Added `NoBinaryModelRecord` for models that do not use binary interaction parameters. [#211](https://github.com/feos-org/feos/pull/211)

feos-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-core"
3-
version = "0.6.1"
3+
version = "0.7.0"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
55
"Philipp Rehner <prehner@ethz.ch"]
66
edition = "2021"

feos-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ Add this to your `Cargo.toml`
2020

2121
```toml
2222
[dependencies]
23-
feos-core = "0.6"
23+
feos-core = "0.7"

feos-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-derive"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>", "Philipp Rehner <prehner@ethz.ch>"]
55
edition = "2021"
66
readme = "README.md"

feos-dft/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.7.0] - 2024-05-21
810
### Changed
911
- Updated interfaces according to removal of `HelmholtzEnergyDual` and `HelmholtzEnergy` in `feos-core`. [#226](https://github.com/feos-org/feos/pull/226)
1012
- Changed return values of `HelmholtzEnergyFunctional::contributions` from `dyn FunctionalContribution` to `HelmholtzEnergyFunctional::Contribution`. [#226](https://github.com/feos-org/feos/pull/226)

feos-dft/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-dft"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Philipp Rehner <prehner@ethz.ch>", "Gernot Bauer <bauer@itt.uni-stuttgart.de>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ features = [ "rayon" ]
1919
[dependencies]
2020
quantity = { version = "0.8", optional = true }
2121
num-dual = "0.9"
22-
feos-core = { version = "0.6", path = "../feos-core" }
22+
feos-core = { version = "0.7", path = "../feos-core" }
2323
ndarray = "0.15"
2424
nalgebra = "0.32"
2525
rustdct = "0.7"

feos-dft/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ Add this to your `Cargo.toml`
1717

1818
```toml
1919
[dependencies]
20-
feos-dft = "0.5"
20+
feos-dft = "0.7"
2121
```

0 commit comments

Comments
 (0)