summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis Martinez2022-01-07 22:34:26 -0600
committerLuis Martinez2022-01-07 22:34:26 -0600
commitafd20fe8ce09152b07edc7df9504afcabdd4aa2f (patch)
tree0107da057c5279432c9f334396dc8b15128a92bb
parentecd516bff0e8c0680f0b9cbe24ba61157a96893c (diff)
downloadaur-afd20fe8ce09152b07edc7df9504afcabdd4aa2f.tar.gz
update changelog
-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.