Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
GiacomoPope committed Aug 18, 2023
1 parent 4d46c69 commit f43b291
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,13 @@ To do
* Improved printing and string input/output
* IPython hooks (TeX pretty-printing etc.)

CHANGELOG
-------------

0.5.0

- 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.

License
------------

Expand Down
2 changes: 1 addition & 1 deletion src/flint/flint_base/flint_base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ cdef class flint_poly(flint_elem):
acb_poly(input_poly).roots()
"""
raise NotImplementedError('This method has been deprecated. Please instead use acb_poly(input_poly).roots()')
raise NotImplementedError('This method is no longer supported. To recover the complex roots first convert to acb_poly')



Expand Down

0 comments on commit f43b291

Please sign in to comment.