Skip to content

Commit

Permalink
Release v0.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Jan 2, 2023
1 parent 52f1619 commit c6284a8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.9] - 02/01/2023

### Added

- added new function `pineappl_grid_scale_by_bin` to the CAPI that corresponds
Expand Down Expand Up @@ -348,7 +350,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.8...HEAD
[Unreleased]: https://github.com/N3PDF/pineappl/compare/v0.5.9...HEAD
[0.5.9]: https://github.com/N3PDF/pineappl/compare/v0.5.8...v0.5.9
[0.5.8]: https://github.com/N3PDF/pineappl/compare/v0.5.7...v0.5.8
[0.5.7]: https://github.com/N3PDF/pineappl/compare/v0.5.6...v0.5.7
[0.5.6]: https://github.com/N3PDF/pineappl/compare/v0.5.5...v0.5.6
Expand Down
2 changes: 1 addition & 1 deletion pineappl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl"
version = "0.5.8"
version = "0.5.9"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion pineappl_applgrid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl_applgrid"
version = "0.2.0"
version = "0.5.9"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions pineappl_capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl_capi"
version = "0.5.8"
version = "0.5.9"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand All @@ -12,7 +12,7 @@ description = "C language interface to PineAPPL"
rust-version = "1.56.1"

[dependencies]
pineappl = { path = "../pineappl", version = "0.5.8" }
pineappl = { path = "../pineappl", version = "0.5.9" }
itertools = "0.10.1"

[features]
Expand Down
8 changes: 4 additions & 4 deletions pineappl_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl_cli"
version = "0.5.8"
version = "0.5.9"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand All @@ -25,9 +25,9 @@ lz4_flex = { optional = true, version = "0.9.2" }
ndarray = "0.15.4"
ndarray-npy = { optional = true, version = "0.8.1" }
num_cpus = "1.13.0"
pineappl = { path = "../pineappl", version = "0.5.8" }
pineappl_applgrid = { optional = true, path = "../pineappl_applgrid", version = "0.2.0" }
pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "0.2.0" }
pineappl = { path = "../pineappl", version = "0.5.9" }
pineappl_applgrid = { optional = true, path = "../pineappl_applgrid", version = "0.5.9" }
pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "0.5.9" }
prettytable-rs = { default-features = false, features = ["win_crlf"], version = "0.10.0" }
rayon = "1.5.1"
scopeguard = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion pineappl_fastnlo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl_fastnlo"
version = "0.2.0"
version = "0.5.9"
authors = ["Christopher Schwan <handgranaten-herbert@posteo.de>"]
edition = "2021"
license = "GPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions pineappl_py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pineappl_py"
version = "0.5.8"
version = "0.5.9"
authors = [
"Christopher Schwan <handgranaten-herbert@posteo.de>",
"Alessandro Candido <candido.ale@gmail.com>",
Expand All @@ -26,5 +26,5 @@ crate-type = ["cdylib"]
itertools = "0.9"
ndarray = "0.15.3"
numpy = "0.16.2"
pineappl = { path = "../pineappl", version = "0.5.8" }
pineappl = { path = "../pineappl", version = "0.5.9" }
pyo3 = { features = ["extension-module"], version = "0.16.4" }

0 comments on commit c6284a8

Please sign in to comment.