-
I have to start packaging an application that follows the major.minor pattern with release candidates, for example:
Is there any other approach other than to make all releases of v1.1 the same version and set |
Beta Was this translation helpful? Give feedback.
Answered by
robmen
Sep 7, 2023
Replies: 1 comment
-
You get three parts to the MSI version. Use a monotonically increasing value for the third part. Semver is cute but, in the end, just make sure later releases of |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jcasale
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You get three parts to the MSI version. Use a monotonically increasing value for the third part. Semver is cute but, in the end, just make sure later releases of
v#.#.#
are bigger than older versions ofv#.#.#
.