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.5 #953

Merged
merged 2 commits into from
Aug 23, 2024
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ repos:
- id: cmake-format
additional_dependencies: [pyyaml]

- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v4.0.0-alpha.8"
- repo: https://github.com/rbubley/mirrors-prettier
rev: "v3.3.3"
hooks:
- id: prettier
types_or: [yaml, markdown, html, css, scss, javascript, json]
Expand Down
48 changes: 48 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,53 @@
# Changelog

## Version 1.5

### Version 1.5.0

#### Features

- Support variable rebinning [#913][]
- Removed support for Python 3.7 [#952][]
- Added support for Python 3.13 and free-threaded Python 3.13t [#950][]
- Add GitHub artifact attestations to package distribution [#933][]

#### Backend and docs

- Move build to scikit-build-core [#887][]
- Clean up sdist files [#928][]
- Minor touchup to build backend, use scikit-build-core 0.10+ [#948][]

#### CI and testing

- Try cibuildwheel pyodide [#935][]
- Try to fix pyodide build [#934][]
- Update emscripten build [#937][]
- Bump to Pyodide 3.12 [#938][]
- Speed up pyodide job by a few seconds [#941][]
- Update jobs and noxfile [#929][]
- Use pylint 3.2 github formatter instead [#932][]
- Add some CI speedups [#939][]
- Faster cibuildwheel [#942][]
- Adapt to final release of NumPy 2.1.0 [#951][]

[#887]: https://github.com/scikit-hep/boost-histogram/pull/887
[#913]: https://github.com/scikit-hep/boost-histogram/pull/913
[#928]: https://github.com/scikit-hep/boost-histogram/pull/928
[#929]: https://github.com/scikit-hep/boost-histogram/pull/929
[#932]: https://github.com/scikit-hep/boost-histogram/pull/932
[#933]: https://github.com/scikit-hep/boost-histogram/pull/933
[#934]: https://github.com/scikit-hep/boost-histogram/pull/934
[#935]: https://github.com/scikit-hep/boost-histogram/pull/935
[#937]: https://github.com/scikit-hep/boost-histogram/pull/937
[#938]: https://github.com/scikit-hep/boost-histogram/pull/938
[#939]: https://github.com/scikit-hep/boost-histogram/pull/939
[#941]: https://github.com/scikit-hep/boost-histogram/pull/941
[#942]: https://github.com/scikit-hep/boost-histogram/pull/942
[#948]: https://github.com/scikit-hep/boost-histogram/pull/948
[#950]: https://github.com/scikit-hep/boost-histogram/pull/950
[#951]: https://github.com/scikit-hep/boost-histogram/pull/951
[#952]: https://github.com/scikit-hep/boost-histogram/pull/952

## Version 1.4

### Version 1.4.1
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ log_cli_level = "DEBUG"
python_version = "3.8"
files = ["src"]
strict = true
show_error_codes = true
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = true

Expand Down
Loading