diff --git a/CHANGELOG.md b/CHANGELOG.md index 54c2003c..0a4211bf 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.3.0] - 20/08/2020 + ### Added - added the options `--absolute`, `--orders`, and `--lumis` to the subcommand @@ -60,6 +62,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - first release -[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.3.0...HEAD +[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 [0.1.0]: https://github.com/N3PDF/pineappl/compare/v0.0.0...v0.1.0 diff --git a/pineappl/Cargo.toml b/pineappl/Cargo.toml index 63127100..8a875614 100644 --- a/pineappl/Cargo.toml +++ b/pineappl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl" -version = "0.2.0" +version = "0.3.0" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" diff --git a/pineappl_capi/Cargo.toml b/pineappl_capi/Cargo.toml index 9cb8351d..144315e9 100644 --- a/pineappl_capi/Cargo.toml +++ b/pineappl_capi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_capi" -version = "0.2.0" +version = "0.3.0" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" @@ -14,4 +14,4 @@ description = "C language interface to PineAPPL" crate-type = ["cdylib"] [dependencies] -pineappl = { path = "../pineappl", version = "0.2.0" } +pineappl = { path = "../pineappl", version = "0.3.0" } diff --git a/pineappl_cli/Cargo.toml b/pineappl_cli/Cargo.toml index 9ad2d898..c2c89bc8 100644 --- a/pineappl_cli/Cargo.toml +++ b/pineappl_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pineappl_cli" -version = "0.2.0" +version = "0.3.0" authors = ["Christopher Schwan "] edition = "2018" license = "GPL-3.0-or-later" @@ -15,7 +15,7 @@ clap = { default-features = false, features = ["suggestions"], version = "~2.33. itertools = "0.9" lhapdf = "0.1.6" num_cpus = "1.0" -pineappl = { path = "../pineappl", version = "0.2" } +pineappl = { path = "../pineappl", version = "0.3" } prettytable-rs = "^0.8" rayon = "1.3" diff --git a/wrappers/python/src/pineappl/__init__.py b/wrappers/python/src/pineappl/__init__.py index 39d61810..ea960282 100644 --- a/wrappers/python/src/pineappl/__init__.py +++ b/wrappers/python/src/pineappl/__init__.py @@ -1,5 +1,5 @@ """PineAPPL python wrapper""" -__version__ = "0.2.0" +__version__ = "0.3.0" from pineappl.interface import lumi, grid