Skip to content

Commit 74a5b03

Browse files
diegorussohugovk
andauthored
Prepare release 1.12.0 (#420)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 726bade commit 74a5b03

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

doc/changelog.rst

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

4-
* Run ruff format and check under pre-commit and GitHub Actions
4+
Version 1.12.0 (2025-10-24)
5+
--------------
6+
* Add xdsl benchmark (but disabled by default due to a regression)
7+
* Add a new quadtree nbody simulation using the Barnes Hut algorithm
8+
* Add argparse benchmark
9+
* Add NetworkX benchmarks
10+
* Add Sphinx benchmark
11+
* Add decimal module benchmark
12+
* Add BPE tokeniser benchmark
13+
* Skip dask benchmark on Windows for Python 3.13
514
* Bump dask[distributed] to 2024.10.1 for Windows compatibility
6-
* Bump greenlet to 3.1.0 for compatibility with 3.13
7-
* Bump tornado to 6.2.0
15+
* Bump greenlet to 3.2.4 for compatibility with 3.13+
16+
* Bump Chameleon to 4.6.0
17+
* Bump tornado to 6.5.0
18+
* Bump pyperf to 2.9.0
19+
* Bump sqlglot to V2
20+
* Bump mypy to 1.18.2
21+
* Fix check for editable mode
22+
* Fix ``--same-loops`` handling
23+
* Fix: pass ``--warmup`` and ``--timeout`` flags to pyperf
24+
* Add ``-V``/``--version`` CLI argument
25+
* Add ``--hook`` CLI argument
26+
* Run ruff format and check under pre-commit and GitHub Actions
27+
* Add support for experimental JIT builds
28+
* Add Arm64 CI
29+
* Add Free-threading CI
30+
* Make Windows a non-experimental platform in CI
31+
* Add support Python 3.14 and drop Python 3.7, 3.8, 3.9
832

933
Version 1.11.0 (2024-03-09)
1034
--------------

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)