I added this new issue that happens on the latest image.
I'm posting it here because I think it is an important bug because it affects the number model.
The problem is related with all fractions who's denominator is not power of two. (130/100 = 1.3 or 1/5 = 0.2, etc)
(See
Float>>adaptToFraction: rcvr andCompare: selector where it does
....
"Try to avoid asTrueFraction because it can cost"
selector == #= ifTrue: [
rcvr denominator isPowerOfTwo ifFalse: [^false]].
...)
Hernan.