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

Commit

Permalink
Release v0.1.0 (#11)
Browse files Browse the repository at this point in the history
Release v0.1.0
  • Loading branch information
prehner authored Dec 2, 2021
1 parent 31a3a8c commit 149540a
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release

on:
push:
tags: ["v*"]

jobs:
release-crates-io:
name: Release crates.io
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: login
args: ${{ secrets.CRATES_IO_TOKEN }}
- uses: actions-rs/cargo@v1
with:
command: publish
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

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.1.0] - 2021-12-02
### Added
- Initial release
11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@
name = "feos-core"
version = "0.1.0"
authors = ["Gernot Bauer <bauer@itt.uni-stuttgart.de>",
"Philipp Rehner <rehner@itt.uni-stuttgart.de"]
"Philipp Rehner <prehner@ethz.ch"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Core traits and functionalities for the `feos` project."
homepage = "https://github.com/feos-org"
readme = "README.md"
repository = "https://github.com/feos-org/feos-core"
keywords = ["physics", "thermodynamics", "equations_of_state", "phase_equilibria"]
categories = ["science"]
exclude = ["/.github/*", "*.ipynb", "/docs"]

[dependencies]
quantity = { version = "0.3", features = ["linalg"] }
Expand All @@ -14,7 +22,6 @@ ndarray-linalg = "0.14"
ndarray-stats = "0.5"
num-traits = "0.2"
thiserror = "1.0"
anyhow = "1.0"
argmin = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 149540a

Please sign in to comment.