Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Are Software versions a decimal?

Are Software versions a decimal?

Scheduled Pinned Locked Moved The Lounge
questionannouncementandroidcom
32 Posts 23 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K kalberts

    With more than two levels it becomes hard to argue for the dot being a decimal point. Unless you are British and old enough to long back to the shillings.

    D Offline
    D Offline
    dan sh
    wrote on last edited by
    #10

    Member 7989122 wrote:

    With more than two levels it becomes hard to argue for the dot being a decimal point.

    Now you are just assuming all dots to be decimal. May be there is a dot who feels like 3. You cannot call it dot or point or decimal. That is so rude.

    "It is easy to decipher extraterrestrial signals after deciphering Javascript and VB6 themselves.", ISanti[^]

    1 Reply Last reply
    0
    • M Mike Prof Chuck

      What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

      || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

      P Offline
      P Offline
      PIEBALDconsult
      wrote on last edited by
      #11

      Not a number. I remember when the D language was still being tested by a few people and Walter asked us whether or not it would be confusing to go from 0.99 to 0.100 -- nope, not confusing.

      1 Reply Last reply
      0
      • M Mike Prof Chuck

        What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

        || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

        D Offline
        D Offline
        Dave Kreskowiak
        wrote on last edited by
        #12

        Definitely count up for each part. These are not decimal numbers. My version numbers are always major.minor.build. Major versions are reserved for either complete rewrites or major feature packs. Minor versions are for feature changes and bug fix packs. The build number is rather obvious but also doubles as a hotfix ID if needed. Every time the major version changes, the minor version and build numbers get reset to 0.

        Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles.
        Dave Kreskowiak

        M 1 Reply Last reply
        0
        • M Mike Prof Chuck

          What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

          || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

          G Offline
          G Offline
          Gary Wheeler
          wrote on last edited by
          #13

          Ours are m.n.bbbb, where m is the major version, n the minor version, and bbbb is the build number. Each m.n value denotes a significant release of the product. Oddly, each specific m.n has it's own range of build numbers. The ranges do not intersect. For example, product 1.1 will have build numbers 1000-1499, while product 1.2 will have build numbers 1500-2499. This was required to make the "document control" people (who manage ECO's[^]) happy for some inexplicable reason. One of the minor annoyances working for a company where engineering management is all hardware engineers and all processes are hardware-oriented, whether it makes sense or not.

          Software Zen: delete this;

          1 Reply Last reply
          0
          • D Dave Kreskowiak

            Definitely count up for each part. These are not decimal numbers. My version numbers are always major.minor.build. Major versions are reserved for either complete rewrites or major feature packs. Minor versions are for feature changes and bug fix packs. The build number is rather obvious but also doubles as a hotfix ID if needed. Every time the major version changes, the minor version and build numbers get reset to 0.

            Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles.
            Dave Kreskowiak

            M Offline
            M Offline
            Mike Prof Chuck
            wrote on last edited by
            #14

            Every time the major version changes, the minor version and build numbers get reset to 0.

            Build number to zero, really? Minor to zero, yes of course, but the build number is (in our case) a unique, ever-growing id right from the build server, which can not be manipulated and currently is in the mid-thousands

            || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

            K D 2 Replies Last reply
            0
            • M Mike Prof Chuck

              What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

              || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

              M Offline
              M Offline
              Member 9167057
              wrote on last edited by
              #15

              I personally treat them as token-separatet number sets. Major[dot]Minor. Granted, among the reasons is my fear of comparing floats and version numbers have to be frequently compared.

              1 Reply Last reply
              0
              • M Mike Prof Chuck

                Every time the major version changes, the minor version and build numbers get reset to 0.

                Build number to zero, really? Minor to zero, yes of course, but the build number is (in our case) a unique, ever-growing id right from the build server, which can not be manipulated and currently is in the mid-thousands

                || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                K Offline
                K Offline
                kalberts
                wrote on last edited by
                #16

                Build managers frequently count the number of executions of a given build project, assigning each build a number from a dense series local to that project. If this is what you refer to as the build number, and you for each major release define a new build project, zeroing the build number comes automatically. The global build number carries very litte information about your project. Any other build project, unrelated to yours, will modify it. The difference between two global build numbers does not tell if they span one or a dozen builds of your project. The project local number tells if the older build was the last before this one, three versions back, ten versions back.

                M 1 Reply Last reply
                0
                • M Mike Prof Chuck

                  What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                  || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                  F Offline
                  F Offline
                  Formerly 11521271 Member
                  wrote on last edited by
                  #17

                  I thought some one would have mentioned it by now. It's called Semantic Versioning and you can read the spec at Semantic Versioning 2.0.0 | Semantic Versioning[^] The About section at the bottom states: "The Semantic Versioning specification is authored by Tom Preston-Werner, inventor of Gravatars and cofounder of GitHub." If it's good enough for him...

                  1 Reply Last reply
                  0
                  • K kalberts

                    Build managers frequently count the number of executions of a given build project, assigning each build a number from a dense series local to that project. If this is what you refer to as the build number, and you for each major release define a new build project, zeroing the build number comes automatically. The global build number carries very litte information about your project. Any other build project, unrelated to yours, will modify it. The difference between two global build numbers does not tell if they span one or a dozen builds of your project. The project local number tells if the older build was the last before this one, three versions back, ten versions back.

                    M Offline
                    M Offline
                    Mike Prof Chuck
                    wrote on last edited by
                    #18

                    Yes, a new build project resets, thats true. Our setup is that the scope never changes. scope is meant in terms of "visual studio solution" or "android studio project". Each app has one and only one build project on the build server. Spawned over branches, release channel, alpha channel, all that stuff. So each "channel" does not have continuous build numbers. We do this for the app/play stores as they want unique numbers and we just use the build number from the build server as apk version. only exception is the nightly full-build-test-CI build. those will never see light of day outside the testing environment. these builds have their own build number. alpha and release share a build number, and each build gets tagged with its channel name. so we have, for instance, 5270-77 are alpha and 3 days later the 5278 is the release. the builds are tagged on the build server and we can run reports on a per-channel basis to see which builds we have. each channel has different retention times, how long artifacts are kept before they get deleted. nightly gets purged every day (it purges before the next starts), if there is not a freezing tag set, alpha stays for 10 days, release forever. we can set freezing tags to prevent specific artifacts from being deleted, if they need closer investigation in case of problems/errors/failed tests. but all-in-all we just use that auto-generated number to keep the artifacts unique. we don't have so many rules in place and nobody is telling us how and what we build. we are a small company (<50 ppl) and this is very good :-)

                    || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                    1 Reply Last reply
                    0
                    • K kalberts

                      With more than two levels it becomes hard to argue for the dot being a decimal point. Unless you are British and old enough to long back to the shillings.

                      P Offline
                      P Offline
                      PeteTheDiver
                      wrote on last edited by
                      #19

                      It was never a decimal point in the days of shillings, it was a separator the same as in software versions. Obvious when you think it through, definition of decimal is "relating to or denoting a system of numbers and arithmetic based on the number ten, tenth parts, and powers of ten", there were 20 shillings in a pound and 12 pence in a shilling so no multiples of ten. And even in the days of shillings the full stop was rarely used in writing down currency (at least in my experience), for instance two pounds, five shillings and six pence would normally be written "£2 5/6"

                      F D 2 Replies Last reply
                      0
                      • M Mike Prof Chuck

                        What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                        || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                        E Offline
                        E Offline
                        englebart
                        wrote on last edited by
                        #20

                        Not decimals. Per your example, 2.4 is the fourth revision. 2.40 is the fortieth revision (1 more than 39) For retail software, version numbers are always a political decision driven by marketing. Below can be used for in house software: You can use version numbers to represent the branches. 10.0, 10.1, 10.2, etc. are different labels along the 10 "main" branch. 10.1.x would be a support build on a separate branch that is initialized from the 10.1 label. 11.0 would indicate that all 10 changes have been re-integrated and resolved and time for a fresh start.

                        1 Reply Last reply
                        0
                        • M Mike Prof Chuck

                          What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                          || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                          A Offline
                          A Offline
                          agolddog
                          wrote on last edited by
                          #21

                          If I understand your question right, here's what I've been taught: it's best to think of them in the "count up" way. Each piece is a different part: majorVersion.minorVersion (some include another dot for bugfixVersion or some such. I think I've seen up to four parts.) How you determine whether a release is "major" or "minor" (and thus which part you change) is up to you. Something you might consider major (rewrite data access layer) is not to your clients; they don't see any changes. Something you might consider minor, might be major to your clients (re-styling the site so it totally looks different, even though nothing changed under the hood). One thing to keep in mind: once you've decided a release increments majorVersion, minorVersion resets to 0 (i.e., we're starting out on the 3rd big release. There will undoubtedly be smaller releases which then push it to 3.1, 3.2, etc, etc).

                          1 Reply Last reply
                          0
                          • M Mike Prof Chuck

                            Every time the major version changes, the minor version and build numbers get reset to 0.

                            Build number to zero, really? Minor to zero, yes of course, but the build number is (in our case) a unique, ever-growing id right from the build server, which can not be manipulated and currently is in the mid-thousands

                            || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                            D Offline
                            D Offline
                            Dave Kreskowiak
                            wrote on last edited by
                            #22

                            I knew I was going to get a comment on that. Yeah, I reset the build number for the major version changes. The major versions are the new base version upon which everything else is built. I don't change the major version for, say, adding a pack of 5 smaller features. I change it for complete rewrites, like if I'm taking over a badly written project, or if it's a large pack of sweeping changes across most of the app, or a large pack of major feature additions, usually something that either completely changes the look and feel of the app or breaks backwards compatibility, if that's on the table, or I rewrite to use a more modern technology stack. I really don't change the major number very often. My minor versions usually get into the teens or twenties before I go for a major version change.

                            Asking questions is a skill CodeProject Forum Guidelines Google: C# How to debug code Seriously, go read these articles.
                            Dave Kreskowiak

                            1 Reply Last reply
                            0
                            • P PeteTheDiver

                              It was never a decimal point in the days of shillings, it was a separator the same as in software versions. Obvious when you think it through, definition of decimal is "relating to or denoting a system of numbers and arithmetic based on the number ten, tenth parts, and powers of ten", there were 20 shillings in a pound and 12 pence in a shilling so no multiples of ten. And even in the days of shillings the full stop was rarely used in writing down currency (at least in my experience), for instance two pounds, five shillings and six pence would normally be written "£2 5/6"

                              F Offline
                              F Offline
                              Forogar
                              wrote on last edited by
                              #23

                              I miss the good old days. Shillings were so nice to have around.

                              - I would love to change the world, but they won’t give me the source code.

                              1 Reply Last reply
                              0
                              • M Mike Prof Chuck

                                What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                                || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                                P Offline
                                P Offline
                                PSU Steve
                                wrote on last edited by
                                #24

                                Apparently I am an odd-ball when it comes to using version #s. Our app is comprised of a single EXE "shell" with all the functionality in individual DLLs. Not all DLLs get updated in every release. I use a version numbering system "YY.MM.DD.XX" where YY.MM.DD is the date of the DLL's release. XX is normally "0" but if we had to do a revision of the DLLs within the same date we'd increment that value. So a DLL released today would be v19.2.21.0 but a second release today would be v19.2.21.1.

                                1 Reply Last reply
                                0
                                • M Mike Prof Chuck

                                  What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                                  || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                                  L Offline
                                  L Offline
                                  Lost User
                                  wrote on last edited by
                                  #25

                                  With RAD, there is little time to think (much) about the versioning. You mostly want to know whether someone is testing / using an earlier or later version when dealing with multiple "cells". So I just let Visual Studio do the counting. Just make sure all the modules in the project are using the same pattern. (AssemblyInfo.cs) [Assembly Versioning | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/framework/app-domains/assembly-versioning)

                                  "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal

                                  1 Reply Last reply
                                  0
                                  • M Mike Prof Chuck

                                    What I mean with this cryptic question: Do you treat the first part of software versioning (i.e. "2.4") like a decimal number or do you simply "count up"? If treated as decimal, it would mean, that "2.4" is equal to "2.40" (like a decimal number is equal), if you count up, not. Decimal version flow: 2.1 followed by hotfix 2.11, 2.12, etc Next minor release after 2.1 can be 2.2 (= 2.20) Count up: 2.1 followed by 2.2, ... ... 2.8, 2.9, 2.10, 2.11 and so on I hope I could explain, what I mean. How do software versions evolve in your minds?

                                    || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                                    V Offline
                                    V Offline
                                    vbjay net
                                    wrote on last edited by
                                    #26

                                    Version Class (System) | Microsoft Docs[^]. This might help. It's specific to .net but it also talks about general version parts and the meaning. We also have Semantic Versioning 2.0.0 | Semantic Versioning[^]

                                    D 1 Reply Last reply
                                    0
                                    • P PeteTheDiver

                                      It was never a decimal point in the days of shillings, it was a separator the same as in software versions. Obvious when you think it through, definition of decimal is "relating to or denoting a system of numbers and arithmetic based on the number ten, tenth parts, and powers of ten", there were 20 shillings in a pound and 12 pence in a shilling so no multiples of ten. And even in the days of shillings the full stop was rarely used in writing down currency (at least in my experience), for instance two pounds, five shillings and six pence would normally be written "£2 5/6"

                                      D Offline
                                      D Offline
                                      DerekT P
                                      wrote on last edited by
                                      #27

                                      PeteTheDiver wrote:

                                      full stop was rarely used

                                      I don't think I ever recall a dot being used as a pounds/shillings/pence separator - it was always the forward slash. My first-ever role as a contractor (1983) involved making some changes to an accounting system. I was a COBOL developer but had included in my CV that I also knew BASIC and 6502 assembly language. The recruiter idiot had decided I was a great match for a client needing an IBM assembler programmer. (After all, how different could IBM mainframe and 6502 be?) :laugh: So it was a steep learning curve, to put it mildly. What was worse was that the system predated 1971 and handled all currency in pounds/shillings/pence. At decimalisation they'd kept the three fields and stored the number of (new) pence by dividing by 12, putting the result in the shillings, and the remainder in the pence. (e.g. 50p was represented as 4/2). Thankfully it was only a six-month contract but I think that's when the grey hair started...

                                      1 Reply Last reply
                                      0
                                      • V vbjay net

                                        Version Class (System) | Microsoft Docs[^]. This might help. It's specific to .net but it also talks about general version parts and the meaning. We also have Semantic Versioning 2.0.0 | Semantic Versioning[^]

                                        D Offline
                                        D Offline
                                        DerekT P
                                        wrote on last edited by
                                        #28

                                        I use Microsoft's versioning too; not their "do as I say", but their "do as I do". This gives the sequence: 1, 2, 3, 3.1, 3.11, 95, 98, 98SE, ME, 2000, XP, Vista, 7, 8, 8.1, 10. Then the sequence ends. It's clear, unambiguous, intuitive. :-D The non-numeric version numbers just keep the users on their toes.

                                        M 1 Reply Last reply
                                        0
                                        • D DerekT P

                                          I use Microsoft's versioning too; not their "do as I say", but their "do as I do". This gives the sequence: 1, 2, 3, 3.1, 3.11, 95, 98, 98SE, ME, 2000, XP, Vista, 7, 8, 8.1, 10. Then the sequence ends. It's clear, unambiguous, intuitive. :-D The non-numeric version numbers just keep the users on their toes.

                                          M Offline
                                          M Offline
                                          Mike Prof Chuck
                                          wrote on last edited by
                                          #29

                                          Made me laugh! Thank you :laugh:

                                          || You know nothing, Jon Snow. || My Android Label (mbar Software) || My Android Apps in Play Store

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups