Changes between Version 1 and Version 2 of WhenToUseTheStupidTildeInVersionNumbers


Ignore:
Timestamp:
03/12/11 20:30:25 (13 years ago)
Author:
andersk
Comment:

Minor formatting fix

Legend:

Unmodified
Added
Removed
Modified
  • WhenToUseTheStupidTildeInVersionNumbers

    v1 v2  
    33According to [http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version Debian Policy]: 
    44 
    5   The lexical comparison is a comparison of ASCII values modified so that all the letters sort earlier than all the non-letters and so that a tilde sorts before anything, even the end of a part. For example, the following parts are in sorted order from earliest to latest: ~~, ~~a, ~, the empty part, a.[[BR]] 
     5  The lexical comparison is a comparison of ASCII values modified so that all the letters sort earlier than all the non-letters and so that a tilde sorts before anything, even the end of a part. For example, the following parts are in sorted order from earliest to latest: `~~`, `~~a`, `~`, the empty part, `a`.[[BR]] 
    66  ...[[BR]] 
    7   One common use of ~ is for upstream pre-releases. For example, 1.0~beta1~svn1245 sorts earlier than 1.0~beta1, which sorts earlier than 1.0. 
     7  One common use of `~` is for upstream pre-releases. For example, `1.0~beta1~svn1245` sorts earlier than `1.0~beta1`, which sorts earlier than `1.0`. 
    88 
    99A good rule of thumb is that the tilde is generally needed for '''earlier''' (`<<`, `lt`)  and '''later-or-equal''' (`>=`, `ge`) comparisons, and not needed for '''later'''  (`>>`, `gt`) or '''earlier-or-equal''' (`<=`, `le`).