diff --git a/CHANGELOG.md b/CHANGELOG.md index de28d439..b96a894b 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.2] - 29/03/2022 + ### Added - added new subcommand `import`, which at this stage converts fastNLO tables to @@ -226,7 +228,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.1...HEAD +[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.5.2...HEAD +[0.5.2]: https://github.com/N3PDF/pineappl/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/N3PDF/pineappl/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/N3PDF/pineappl/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/N3PDF/pineappl/compare/v0.4.0...v0.4.1 diff --git a/pineappl/Cargo.toml b/pineappl/Cargo.toml index 9488bf8f..eca2d6f6 100644 --- a/pineappl/Cargo.toml +++ b/pineappl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl" -version = "0.5.1" +version = "0.5.2" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" diff --git a/pineappl_capi/Cargo.toml b/pineappl_capi/Cargo.toml index 1d2356e1..a04c7a9b 100644 --- a/pineappl_capi/Cargo.toml +++ b/pineappl_capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_capi" -version = "0.5.1" +version = "0.5.2" 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.5.1" } +pineappl = { path = "../pineappl", version = "0.5.2" } itertools = "0.10.1" [features] diff --git a/pineappl_cli/Cargo.toml b/pineappl_cli/Cargo.toml index ec228fbd..2b60f5c0 100644 --- a/pineappl_cli/Cargo.toml +++ b/pineappl_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_cli" -version = "0.5.1" +version = "0.5.2" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" @@ -21,7 +21,7 @@ lazy_static = "1.4.0" lhapdf = "0.1.11" ndarray = "0.15.4" num_cpus = "1.13.0" -pineappl = { path = "../pineappl", version = "0.5.1" } +pineappl = { path = "../pineappl", version = "0.5.2" } pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "0.1.0" } prettytable-rs = { default-features = false, features = ["win_crlf"], version = "0.8.0" } rayon = "1.5.1" diff --git a/pineappl_py/Cargo.toml b/pineappl_py/Cargo.toml index 07b2a7a1..d062bc13 100644 --- a/pineappl_py/Cargo.toml +++ b/pineappl_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_py" -version = "0.5.1" +version = "0.5.2" authors = [ "Christopher Schwan ", "Alessandro Candido ", @@ -25,5 +25,5 @@ crate-type = ["cdylib"] itertools = "0.9" ndarray = "0.15.3" numpy = "0.14.1" -pineappl = { path = "../pineappl", version = "0.5.1" } +pineappl = { path = "../pineappl", version = "0.5.2" } pyo3 = { features = ["extension-module"], version = "0.14.5" }