We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee17df commit cdbf33bCopy full SHA for cdbf33b
doc/changelog.rst
@@ -1,6 +1,17 @@
1
Changelog
2
=========
3
4
+Version 1.13.0 (2025-10-27)
5
+--------------
6
+* Re-enable xdsl benchmark
7
+* Remove code for Python 3.7 and previous versions
8
+* CI updates:
9
+ * fix workflow ubuntu-latest
10
+ * remove unused Azure Pipelines config
11
+ * update checkout version
12
+ * setup dependabot
13
+ * update setup-python version
14
+
15
Version 1.12.0 (2025-10-24)
16
--------------
17
* Add xdsl benchmark (but disabled by default due to a regression)
pyperformance/__init__.py
@@ -3,7 +3,7 @@
import sys
from importlib.metadata import distribution
-VERSION = (1, 12, 0)
+VERSION = (1, 13, 0)
__version__ = ".".join(map(str, VERSION))
0 commit comments