the check if version >= "3.0.0" returns True in the RF3 beta (RoboFontPy3.app, version 3.0b), but returns False in the public RF3 release (RoboFont3.app, version 3.0).
the first commit fixes the check to version >= "3.0.0", so it returns True as intended
the second commit touches the version number, so the update is picked up by Mechanic
the check
if version >= "3.0.0"
returnsTrue
in the RF3 beta (RoboFontPy3.app, version3.0b
), but returnsFalse
in the public RF3 release (RoboFont3.app, version3.0
).version >= "3.0.0"
, so it returnsTrue
as intended