The version adds the new representation for elements of the [AlgebraicField](https://diofant.readthedocs.io/en/v0.10.0/modules/domains.html#diofant.domains.AlgebraicField) domain, which enables exact roots isolation (by the Collins-Krandick algorithm, which was trivially extended to support real algebraic fields and their gaussian extensions) in case of polynomials with algebraic coefficients:
python
In [1]: RootOf(x**5 - sqrt(2)*x + I, 4)
Out[1]:
⎛ 5 ___ ⎞
RootOf⎝x - ╲╱ 2 ⋅x + ⅈ, 4⎠
In [2]: _.evalf()