Skip to content

Commit 002ed34

Browse files
committed
Prepare release 1.12.0
1 parent 480fbb7 commit 002ed34

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

doc/changelog.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,33 @@
11
Changelog
22
=========
33

4+
Version 1.12.0 (2025-10-24)
5+
--------------
46
* Run ruff format and check under pre-commit and GitHub Actions
57
* Bump dask[distributed] to 2024.10.1 for Windows compatibility
68
* Bump greenlet to 3.1.0 for compatibility with 3.13
79
* Bump tornado to 6.2.0
10+
* Bump pyperf to 2.9.0
11+
* Bump sqlglot to V2
12+
* Bump mypy to 1.18.2
13+
* Fix check for editable mode
14+
* Fix --same-loops handling
15+
* Fix: pass --warmup and --timeout flags to pyperf
16+
* Add xdsl benchmark
17+
* Add a new quadtree nbody simulation using the Barnes Hut algorithm
18+
* Add argparse benchmark
19+
* Add NetworkX benchmarks
20+
* Add Sphinx benchmark
21+
* Add decimal module benchmark
22+
* Add BPE tokeniser benchmark
23+
* Add -V/--version CLI option
24+
* Add --hook CLI parameter
25+
* Add support for experimentak JIT builds
26+
* Add Arm64 CI
27+
* Add Free-threading CI
28+
* Make Windows a non-experimental platform in CI
29+
* Drop support for Python 3.7, 3.8, 3.9
30+
* Skip dask benchmark on Windows for Python 3.13
831

932
Version 1.11.0 (2024-03-09)
1033
--------------

pyperformance/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44
from importlib.metadata import distribution
55

6-
VERSION = (1, 11, 0)
6+
VERSION = (1, 12, 0)
77
__version__ = ".".join(map(str, VERSION))
88

99

0 commit comments

Comments
 (0)