Skip to content

Commit

Permalink
Release v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Dec 12, 2023
1 parent dbd9232 commit 2c3b614
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 15 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.6.3] - 12/12/2023

### Added

- added `Grid::dedup_channels`, the C function `pineappl_grid_dedup_channels`
Expand Down Expand Up @@ -479,7 +481,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- first release

[Unreleased]: https://github.com/NNPDF/pineappl/compare/v0.6.2...HEAD
[Unreleased]: https://github.com/NNPDF/pineappl/compare/v0.6.3...HEAD
[0.6.3]: https://github.com/NNPDF/pineappl/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/NNPDF/pineappl/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/NNPDF/pineappl/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/NNPDF/pineappl/compare/v0.5.9...v0.6.0
Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ keywords = ["high-energy-physics", "physics"]
license = "GPL-3.0-or-later"
repository = "https://github.com/NNPDF/pineappl"
rust-version = "1.64.0"
version = "0.6.2"
version = "0.6.3"

[profile.release]
codegen-units = 1
Expand Down
2 changes: 1 addition & 1 deletion pineappl_capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
pineappl = { path = "../pineappl", version = "=0.6.2" }
pineappl = { path = "../pineappl", version = "=0.6.3" }
itertools = "0.10.1"

[features]
Expand Down
6 changes: 3 additions & 3 deletions pineappl_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ lhapdf = "0.2.1"
lz4_flex = { optional = true, version = "0.9.2" }
ndarray = "0.15.4"
ndarray-npy = { optional = true, version = "0.8.1" }
pineappl = { path = "../pineappl", version = "=0.6.2" }
pineappl_applgrid = { optional = true, path = "../pineappl_applgrid", version = "=0.6.2" }
pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "=0.6.2" }
pineappl = { path = "../pineappl", version = "=0.6.3" }
pineappl_applgrid = { optional = true, path = "../pineappl_applgrid", version = "=0.6.3" }
pineappl_fastnlo = { optional = true, path = "../pineappl_fastnlo", version = "=0.6.3" }
prettytable-rs = { default-features = false, features = ["win_crlf"], version = "0.10.0" }
rayon = "1.5.1"
serde = { features = ["derive"], optional = true, version = "1.0.130" }
Expand Down
2 changes: 1 addition & 1 deletion pineappl_py/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ crate-type = ["cdylib"]
itertools = "0.10.1"
ndarray = "0.15.4"
numpy = "0.16.2"
pineappl = { path = "../pineappl", version = "=0.6.2" }
pineappl = { path = "../pineappl", version = "=0.6.3" }
pyo3 = { features = ["extension-module"], version = "0.16.4" }
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ clap = { features = ["string"], version = "4.2.0" }
clap_mangen = "0.2.7, <0.2.14" # TODO: 0.2.14 has MSRV >=1.70.0
#git2 = "0.17.2"
#semver = "1.0.17"
pineappl_cli = { path = "../pineappl_cli", version = "=0.6.2" }
pineappl_cli = { path = "../pineappl_cli", version = "=0.6.3" }

0 comments on commit 2c3b614

Please sign in to comment.