Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: prepare for 1.4.0 #884

Merged
merged 2 commits into from
Sep 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*.py diff=python
*.pyi diff=python
*.cpp diff=cpp
*.hpp diff=cpp

*.svg -diff
40 changes: 40 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# Changelog

## Version 1.4

### Version 1.4.0

#### Features

- `overflow=False` is now supported for `IntCategory` and `StrCategory`. [#883][]

#### Changes

- Using `_storage_type` now produces a `DeprecationWarning` instead of `PendingDeprecationWarning`. [#801][]
- Updated Boost to 1.82. The upper limit on Regular axes without overflow is now inclusive like NumPy. [#802][]
- Produce more detailed error messages on C++ errors [#848][]

#### Bugfixes

- Make filling an integer axis with a float array (also) an error. [#876][]
- Include `-latomic` on `armv7l` [#823][]

#### Backend and docs

- Add Python 3.12 support and binary wheels, also latest PyPy. `manylinux2014+` required. [#880][], [#878][]
- Drop Python 3.6 support. [#798][]
- Drop pre-built wheels for 32-bit Linux (NumPy also dropped). [#849][]
- Add testing for WebAssembly (Pyodide). [#850][]
- Use Ruff [#829][]

[#798]: https://github.com/scikit-hep/boost-histogram/pull/798
[#801]: https://github.com/scikit-hep/boost-histogram/pull/801
[#802]: https://github.com/scikit-hep/boost-histogram/pull/802
[#823]: https://github.com/scikit-hep/boost-histogram/pull/823
[#829]: https://github.com/scikit-hep/boost-histogram/pull/829
[#848]: https://github.com/scikit-hep/boost-histogram/pull/848
[#849]: https://github.com/scikit-hep/boost-histogram/pull/849
[#850]: https://github.com/scikit-hep/boost-histogram/pull/850
[#876]: https://github.com/scikit-hep/boost-histogram/pull/876
[#878]: https://github.com/scikit-hep/boost-histogram/pull/878
[#880]: https://github.com/scikit-hep/boost-histogram/pull/880
[#883]: https://github.com/scikit-hep/boost-histogram/pull/883

## Version 1.3

### Version 1.3.2
Expand Down
Loading