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

Commit 149540a

Browse files
authored
Release v0.1.0 (#11)
Release v0.1.0
1 parent 31a3a8c commit 149540a

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

.github/workflows/release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags: ["v*"]
6+
7+
jobs:
8+
release-crates-io:
9+
name: Release crates.io
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions-rs/toolchain@v1
14+
with:
15+
profile: minimal
16+
toolchain: stable
17+
override: true
18+
- uses: actions-rs/cargo@v1
19+
with:
20+
command: login
21+
args: ${{ secrets.CRATES_IO_TOKEN }}
22+
- uses: actions-rs/cargo@v1
23+
with:
24+
command: publish

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.1.0] - 2021-12-02
10+
### Added
11+
- Initial release

Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22
name = "feos-core"
33
version = "0.1.0"
44
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
5-
"Philipp Rehner <rehner@itt.uni-stuttgart.de"]
5+
"Philipp Rehner <prehner@ethz.ch"]
66
edition = "2018"
7+
license = "MIT OR Apache-2.0"
8+
description = "Core traits and functionalities for the `feos` project."
9+
homepage = "https://github.com/feos-org"
10+
readme = "README.md"
11+
repository = "https://github.com/feos-org/feos-core"
12+
keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"]
13+
categories = ["science"]
14+
exclude = ["/.github/*", "*.ipynb", "/docs"]
715

816
[dependencies]
917
quantity = { version = "0.3", features = ["linalg"] }
@@ -14,7 +22,6 @@ ndarray-linalg = "0.14"
1422
ndarray-stats = "0.5"
1523
num-traits = "0.2"
1624
thiserror = "1.0"
17-
anyhow = "1.0"
1825
argmin = "0.4"
1926
serde = { version = "1.0", features = ["derive"] }
2027
serde_json = "1.0"

0 commit comments

Comments
 (0)