Skip to content

Commit f43b291

Browse files
committed
Add changelog
1 parent 4d46c69 commit f43b291

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,13 @@ To do
122122
* Improved printing and string input/output
123123
* IPython hooks (TeX pretty-printing etc.)
124124

125+
CHANGELOG
126+
-------------
127+
128+
0.5.0
129+
130+
- gh-63: The `roots` method of `arb_poly`, and `nmod_poly` is no longer supported. Use `acb_roots(p).roots()` to get the old behaviour of returning the roots as `acb`. Note that the `roots` method of `fmpz_poly` and `fmpq_poly` currently returns the complex roots of the polynomial.
131+
125132
License
126133
------------
127134

src/flint/flint_base/flint_base.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ cdef class flint_poly(flint_elem):
7272
7373
acb_poly(input_poly).roots()
7474
"""
75-
raise NotImplementedError('This method has been deprecated. Please instead use acb_poly(input_poly).roots()')
75+
raise NotImplementedError('This method is no longer supported. To recover the complex roots first convert to acb_poly')
7676

7777

7878

0 commit comments

Comments
 (0)