Version Number Comparison

In one of your examples you compare version 1.47 vs 1.5.In this case 1.47 is the newer version.Just to make this clear to me: is 1.50 newer than 1.47 or is the significant zero in 1.50 ignored?I want to update my application from 1.9 to 1.10, but given your example above that is not possible. Am I obliged to use 2.0 instead?

If so, and I had known earlier I should have started with 1.00 giving me 99 minor version numbers, right?

Just to make this clear to me: is 1.50 newer than 1.47 or is the significant zero in 1.50 ignored?

Version numbers aren't decimal numbers. 1.50 is newer than 1.47. But 1.5 is older than 1.47.

I want to update my application from 1.9 to 1.10, but given your example above that is not possible.

If you read the example closely you'll see that 1.9 to 1.10 is perfectly acceptable. Also, if you have any question about whether a version number is newer or not, simply type them into wyBuild. The version tabs automatically rearrange themselves based on the version numbers you type in.

Short answer: 1.9 to 1.10 is fine.

Thank you Sam for your reply.