game versioning scheme should be a uint_8[3], not a float #12
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
since its a float that represents it as M.mp (ex: 2.2.2 = 2.22), minor and patch can only reach 9 before carrying.
I would rather not have to worry about that.
also since its a float there is some possibility of inacurracies when comparing versions.
although this is very unlikely (if not impossible) because we only go to the hundredths place. it just seems wrong (wow what a great argument)
thinking on how to transition from semantic float versioning to semantic uint_8[3] versioning and I have a basic plan
in the upd3 add a line:
sv=4.0.1for the next patch version and set the float version to this as well:v=4.01.then change the logic in the next patch release to regognize
svinstead ofvin upd3.as new versions go by, the upd3
svwill be updated while thevwill stayv=4.01just in case.