diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ddefa7c..34f61b80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1] - 25/03/2021 + ### Fixed - added fallback options to `git_version` that prevented uploading @@ -118,7 +120,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - first release -[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.4.1...HEAD +[0.4.1]: https://github.com/N3PDF/pineappl/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/N3PDF/pineappl/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/N3PDF/pineappl/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/N3PDF/pineappl/compare/v0.1.0...v0.2.0 diff --git a/pineappl/Cargo.toml b/pineappl/Cargo.toml index f30f07f1..f65e4fe6 100644 --- a/pineappl/Cargo.toml +++ b/pineappl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl" -version = "0.4.0" +version = "0.4.1" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" diff --git a/pineappl_capi/Cargo.toml b/pineappl_capi/Cargo.toml index dd383356..8c35cf6f 100644 --- a/pineappl_capi/Cargo.toml +++ b/pineappl_capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_capi" -version = "0.4.0" +version = "0.4.1" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" @@ -11,7 +11,7 @@ categories = ["science"] description = "C language interface to PineAPPL" [dependencies] -pineappl = { path = "../pineappl", version = "0.4.0" } +pineappl = { path = "../pineappl", version = "0.4.1" } itertools = "0.9" [package.metadata.capi] diff --git a/pineappl_cli/Cargo.toml b/pineappl_cli/Cargo.toml index 64a070f7..8c5b5b57 100644 --- a/pineappl_cli/Cargo.toml +++ b/pineappl_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_cli" -version = "0.4.0" +version = "0.4.1" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" @@ -15,7 +15,7 @@ clap = { default-features = false, features = ["cargo", "std", "suggestions"], v itertools = "0.9" lhapdf = "0.1.9" num_cpus = "1.0" -pineappl = { path = "../pineappl", version = "0.4.0" } +pineappl = { path = "../pineappl", version = "0.4.1" } prettytable-rs = { default-features = false, features = ["win_crlf"], version = "^0.8" } rayon = "1.3"