summarylogtreecommitdiffstats
path: root/CHANGES.rst
diff options
context:
space:
mode:
Diffstat (limited to 'CHANGES.rst')
-rw-r--r--CHANGES.rst19
1 files changed, 18 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index a52798c52b50..a731eb5fa196 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,7 +1,24 @@
ChangeLog
=========
-1.11 (2019-12-??)
+1.12 (2022-01-07)
+-----------------
+
+* Faster and more space friendly pickling and unpickling.
+ https://bugs.python.org/issue44154
+
+* Algorithmically faster arithmetic for large denominators, although slower for
+ small fraction components.
+ https://bugs.python.org/issue43420
+ Original patch for CPython by Sergey B. Kirpichev and Raymond Hettinger.
+
+* Make sure ``bool(Fraction)`` always returns a ``bool``.
+ https://bugs.python.org/issue39274
+
+* Built using Cython 3.0.0a10.
+
+
+1.11 (2019-12-19)
-----------------
* Fix ``OverflowError`` when parsing string values with long decimal parts.