From 2de279201198314620db3c6cf433f671d03c4cfd Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 20 Jul 2023 16:45:09 -0400 Subject: [PATCH 1/2] chore: prepare for 2.7 Signed-off-by: Henry Schreiner --- README.md | 2 ++ docs/changelog.md | 20 ++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/README.md b/README.md index 0732542a..7c1a8487 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,8 @@ Hist currently provides everything boost-histogram provides, and the following e - `.density()` computes the density as an array. - `.profile(remove_ax)` can convert a ND COUNT histogram into a (N-1)D MEAN histogram. - `.sort(axis)` supports sorting a histogram by a categorical axis. Optionally takes a function to sort by. + - `.fill_flattened(...)` will flatten and fill, including support for AwkwardArray. + - `.integrate(...)`, which takes the opposite arguments as `.project`. - Hist implements UHI+; an extension to the UHI (Unified Histogram Indexing) system designed for import-free interactivity: - Uses `j` suffix to switch to data coordinates in access or slices. diff --git a/docs/changelog.md b/docs/changelog.md index 3eaffca3..6ad4cdd6 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,25 @@ # Changelog + +## Version 2.7.0 + +Features: + +* Add a function to integrate axes + [#505](https://github.com/scikit-hep/hist/pull/505) +* Add `fill_flattened` support + [#474](https://github.com/scikit-hep/hist/pull/474) + +Various other items: + +* Move linting to using Ruff + [#475](https://github.com/scikit-hep/hist/pull/475) +* `Self` & `_compat` + [#479](https://github.com/scikit-hep/hist/pull/479) +* Rework and rerun docs API + [#481](https://github.com/scikit-hep/hist/pull/481) + + ## Version 2.6.3 * Experimental dask support From 7b542b56c97a472291814a907152cd824256c529 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 20 Jul 2023 17:02:10 -0400 Subject: [PATCH 2/2] ci: avoid over canceling --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69280a80..809caaee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ env: FORCE_COLOR: 3 concurrency: - group: ${ github.workflow }-${ github.head_ref } + group: ${ github.workflow }-${ github.ref } cancel-in-progress: true jobs: