The series algorithm appears to have changed in the latest Mathematica version.
Series[Exp[x]/Sqrt[x], {x, 0, 1}]
still yields a series expansion in O[x]^{1/2}
but
Series[Exp[1 - x]/Sqrt[1 - x], {x, 1, 1}]
now yields a series O[x-1] instead of O[x-1]^{1/2}, as it previously did. Is there some logic to this, or is this bug? If the latter, how does one go about reporting such a thing?
Thanks for your input.