Skip to content
This repository was archived by the owner on Jun 14, 2022. It is now read-only.

Commit ae86703

Browse files
authored
Release v0.1.1 (#17)
* Release v0.1.1 * update readme
1 parent d470452 commit ae86703

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.1] - 2021-12-22
10+
### Added
11+
- Added `from_multiple_json` function to `Parameter` trait that is able to read parameters from separate JSON files. [#15](https://github.com/feos-org/feos-core/pull/15)
12+
13+
### Packaging
14+
- Updated `pyo3` and `numpy` dependencies to 0.15.
15+
- Updated `quantity` dependency to 0.4.
16+
- Updated `num-dual` dependency to 0.4.
17+
- Removed `ndarray-linalg` and `ndarray-stats` dependencies.
18+
- Removed obsolete features for the selection of the BLAS/LAPACK library.
19+
920
## [0.1.0] - 2021-12-02
1021
### Added
1122
- Initial release

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feos-core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
55
"Philipp Rehner <prehner@ethz.ch"]
66
edition = "2018"
@@ -13,6 +13,9 @@ keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria
1313
categories = ["science"]
1414
exclude = ["/.github/*", "*.ipynb", "/docs"]
1515

16+
[package.metadata.docs.rs]
17+
rustdoc-args = [ "--html-in-header", "./docs-header.html" ]
18+
1619
[dependencies]
1720
quantity = "0.4"
1821
approx = "0.4"

README.md

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

1313
```toml
1414
[dependencies]
15-
feos-core = "0.1.0"
15+
feos-core = "0.1"
1616
```
1717

1818
## Test building python wheel

build_wheel/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.1.0"
3+
version = "0.1.1"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
55
"Philipp Rehner <rehner@itt.uni-stuttgart.de"]
66
edition = "2018"

0 commit comments

Comments
 (0)