Skip to content

Commit cfa539b

Browse files
authored
Release v0.6.0 (#217)
1 parent bd03fee commit cfa539b

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

CHANGELOG.md

+2
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.6.0] - 2023-12-19
810
### Added
911
- 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)
1012
- Added `PureRecord`, `SegmentRecord`, `Identifier`, and `IdentifierOption` to `feos.ideal_gas`. [#205](https://github.com/feos-org/feos/pull/205)

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Gernot Bauer <[email protected]>", "Philipp Rehner <[email protected]>"]
55
edition = "2021"
66
readme = "README.md"
@@ -24,9 +24,9 @@ crate-type = ["rlib", "cdylib"]
2424
[dependencies]
2525
quantity = { version = "0.7", optional = true }
2626
num-dual = "0.8"
27-
feos-core = { version = "0.5", path = "feos-core" }
28-
feos-dft = { version = "0.5", path = "feos-dft", optional = true }
29-
feos-derive = { version = "0.3", path = "feos-derive" }
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" }
3030
numpy = { version = "0.20", 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.11"
41+
itertools = "0.12"
4242
typenum = "1.16"
4343

4444
[dependencies.pyo3]

feos-core/CHANGELOG.md

+2
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.6.0] 2023-12-19
810
### Added
911
- 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)
1012
- Added `NoBinaryModelRecord` for models that do not use binary interaction parameters. [#211](https://github.com/feos-org/feos/pull/211)

feos-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-core"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
authors = ["Gernot Bauer <[email protected]>",
55
"Philipp Rehner <[email protected]"]
66
edition = "2021"

feos-core/README.md

+1-1
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.5"
23+
feos-core = "0.6"

feos-derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-derive"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
authors = ["Gernot Bauer <[email protected]>", "Philipp Rehner <[email protected]>"]
55
edition = "2021"
66
readme = "README.md"

feos-dft/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.6.0] - 2023-12-19
10+
### Packaging
11+
- Updated `feos-core` dependency to 0.6.
12+
913
## [0.5.0] - 2023-10-20
1014
### Added
1115
- Implemented `HelmholtzEnergyFunctional` for `EquationOfState` to be able to use functionals as equations of state. [#158](https://github.com/feos-org/feos/pull/158)

feos-dft/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-dft"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["Philipp Rehner <[email protected]>", "Gernot Bauer <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -19,7 +19,7 @@ features = [ "rayon" ]
1919
[dependencies]
2020
quantity = { version = "0.7", optional = true }
2121
num-dual = "0.8"
22-
feos-core = { version = "0.5", path = "../feos-core" }
22+
feos-core = { version = "0.6", path = "../feos-core" }
2323
ndarray = "0.15"
2424
nalgebra = "0.32"
2525
rustdct = "0.7"

0 commit comments

Comments
 (0)