Skip to content

Commit

Permalink
chore: prepare for 2.7
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Jul 20, 2023
1 parent 80f244a commit d1cebd1
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ repos:
- id: trailing-whitespace

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.0.277
rev: v0.0.278
hooks:
- id: ruff
args: ["--fix", "--show-fixes"]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
20 changes: 20 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d1cebd1

Please sign in to comment.