From ccc3cea377a5b7ac7c193e19cc5710db242a112f Mon Sep 17 00:00:00 2001 From: Christopher Schwan Date: Tue, 4 Oct 2022 10:51:08 +0200 Subject: [PATCH] Release v0.5.6 --- CHANGELOG.md | 5 ++++- pineappl/Cargo.toml | 2 +- pineappl_capi/Cargo.toml | 4 ++-- pineappl_cli/Cargo.toml | 4 ++-- pineappl_py/Cargo.toml | 4 ++-- 5 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 895b89be..d60e4993 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.5.6] - 04/10/2022 + ### Added - added `--dis-pid` switch to `import` subcommand @@ -304,7 +306,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.5.5...HEAD +[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.5.6...HEAD +[0.5.6]: https://github.com/N3PDF/pineappl/compare/v0.5.5...v0.5.6 [0.5.5]: https://github.com/N3PDF/pineappl/compare/v0.5.4...v0.5.5 [0.5.4]: https://github.com/N3PDF/pineappl/compare/v0.5.3...v0.5.4 [0.5.3]: https://github.com/N3PDF/pineappl/compare/v0.5.2...v0.5.3 diff --git a/pineappl/Cargo.toml b/pineappl/Cargo.toml index f7891249..1f1709b3 100644 --- a/pineappl/Cargo.toml +++ b/pineappl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl" -version = "0.5.5" +version = "0.5.6" authors = ["Christopher Schwan "] edition = "2021" license = "GPL-3.0-or-later" diff --git a/pineappl_capi/Cargo.toml b/pineappl_capi/Cargo.toml index 2d0c18d9..e9d79e77 100644 --- a/pineappl_capi/Cargo.toml +++ b/pineappl_capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_capi" -version = "0.5.5" +version = "0.5.6" authors = ["Christopher Schwan "] edition = "2021" license = "GPL-3.0-or-later" @@ -12,7 +12,7 @@ description = "C language interface to PineAPPL" rust-version = "1.56.1" [dependencies] -pineappl = { path = "../pineappl", version = "0.5.5" } +pineappl = { path = "../pineappl", version = "0.5.6" } itertools = "0.10.1" [features] diff --git a/pineappl_cli/Cargo.toml b/pineappl_cli/Cargo.toml index e72ba7e5..666d97b3 100644 --- a/pineappl_cli/Cargo.toml +++ b/pineappl_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_cli" -version = "0.5.5" +version = "0.5.6" authors = ["Christopher Schwan "] edition = "2021" license = "GPL-3.0-or-later" @@ -22,7 +22,7 @@ itertools = "0.10.1" lhapdf = "0.2.1" ndarray = "0.15.4" num_cpus = "1.13.0" -pineappl = { path = "../pineappl", version = "0.5.5" } +pineappl = { path = "../pineappl", version = "0.5.6" } pineappl_applgrid = { optional = true, path = "../pineappl_applgrid", version = "0.1.0" } pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "0.1.0" } prettytable-rs = { default-features = false, features = ["win_crlf"], version = "0.8.0" } diff --git a/pineappl_py/Cargo.toml b/pineappl_py/Cargo.toml index dfcaee1b..f6672be3 100644 --- a/pineappl_py/Cargo.toml +++ b/pineappl_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_py" -version = "0.5.5" +version = "0.5.6" authors = [ "Christopher Schwan ", "Alessandro Candido ", @@ -26,5 +26,5 @@ crate-type = ["cdylib"] itertools = "0.9" ndarray = "0.15.3" numpy = "0.16.2" -pineappl = { path = "../pineappl", version = "0.5.5" } +pineappl = { path = "../pineappl", version = "0.5.6" } pyo3 = { features = ["extension-module"], version = "0.16.4" }