Skip to content
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
11 changes: 11 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Changelog
=========

Version 1.13.0 (2025-10-27)
--------------
* Re-enable xdsl benchmark
* Remove code for Python 3.7 and previous versions
* CI updates:
* fix workflow ubuntu-latest
* remove unused Azure Pipelines config
* update checkout version
* setup dependabot
* update setup-python version

Version 1.12.0 (2025-10-24)
--------------
* Add xdsl benchmark (but disabled by default due to a regression)
Expand Down
2 changes: 1 addition & 1 deletion pyperformance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
from importlib.metadata import distribution

VERSION = (1, 12, 0)
VERSION = (1, 13, 0)
__version__ = ".".join(map(str, VERSION))


Expand Down
Loading