Skip to content

Commit 7a846ab

Browse files
committed
Prepare release of 1.19.
1 parent 03b57a5 commit 7a846ab

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGES.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
ChangeLog
22
=========
33

4-
1.19 (2024-??-??)
4+
1.19 (2024-11-29)
55
-----------------
66

7-
* Support for Python 2.7 as well as 3.7 and earlier has been discontinued.
7+
* Support for Python 2.7 as well as 3.7 and earlier has been removed.
88

99
* Generally use ``.as_integer_ratio()`` in the constructor if available.
1010
https://github.com/python/cpython/pull/120271
@@ -22,6 +22,8 @@ ChangeLog
2222
* Using ``complex`` numbers in division shows better tracebacks.
2323
https://github.com/python/cpython/pull/102842
2424

25+
* Subclass instantiations and calculations could fail in some cases.
26+
2527

2628
1.18 (2024-04-03)
2729
-----------------

src/quicktions.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ from __future__ import division, absolute_import, print_function
2525

2626
__all__ = ['Fraction']
2727

28-
__version__ = '1.18'
28+
__version__ = '1.19'
2929

3030
cimport cython
3131
from cpython.unicode cimport Py_UNICODE_TODECIMAL

0 commit comments

Comments
 (0)