My company is building a product. It's going to be versioned by SVN. It's a webapp so basically there will never be a version out which doesn't have some features in them and thus could always be labeled as beta. But since it's going to be a corporate product I really don't want the "unstable watchout" on there. So how would you go about versioning? Is 1.0 stable? Should the build date be in the version number? Tell me what you guys think!

link|improve this question

46% accept rate
2  
After some time, when you reach ~6 or 7 you should switch to 2010 (or whatever nice year) ;) – Anonymous Mar 5 '09 at 15:26
6  
Arg... Please, I beg you, don't. :-D – DevSolar Mar 5 '09 at 15:50
feedback

17 Answers

up vote 111 down vote accepted

[major].[minor].[release].[build]

major: Really a marketing decision. Are you ready to call the version 1.0? Does the company consider this a major version for which customers might have to pay more, or is it an update of the current major version which may be free? Less of an R&D decision and more a product decision.

minor: Starts from 0 whenever major is incremented. +1 for every version that goes public.

release: Every time you hit a development milestone and release the product, even internally (e.g. to QA), increment this. This is especially important for communication between teams in the organization. Needless to say, never release the same 'release' twice (even internally). Reset to 0 upon minor++ or major++.

build: Can be a SVN revision, I find that works best.

link|improve this answer
3  
This almost matches my definition of versioning my software. However I reset the release to 0 as soon as I increase the "minor" version number. – BlaM Mar 5 '09 at 15:44
4  
+1 having the svn revision number as the build can be very, very handy! – Jeffrey Cameron Mar 5 '09 at 16:10
3  
What for minor if you use git? – Brian Carlton Mar 5 '09 at 16:42
2  
Brian: Do you mean build? – Chris Charabaruk Mar 12 '10 at 12:09
1  
@Brain: Have a look at git describe – Daenyth Aug 9 '10 at 21:33
show 3 more comments
feedback

x.y.z.g

increments in g are unstable. (or RCs) increments in z are stable and mean bug fixes.
increments in y are stable and mean new features.
increments in x are stable, major release without 100% backward compatibility.

link|improve this answer
is this your way or a common usage ? – Canavar Mar 5 '09 at 15:29
8  
About the G spot I am not sure, the rest is common. – Itay Moav Mar 5 '09 at 15:34
Good versioning scheme for components. But for a commercial product, everything beyond x.y is just confusing the customer and making communication difficult IMHO. Especially web apps, which require the customer to migrate - "release early, release often" doesn't cut it there... – DevSolar Mar 5 '09 at 16:07
For customers, there is only x.y or just X (same as MS). – Itay Moav Mar 5 '09 at 16:18
But it would still be good for debugging if its something that the customer actually install/purchase to have the full version hidden somewhere. – Pharaun Jul 16 '10 at 15:26
feedback

I once wrote an elaborate "versioning style guide" for a large project of mine. The project failed to materialize, but the style guide is still available online. It's my personal opinion, perhaps it is helpful (or inspirational) to you.

Beware, it's a long text, and goes into component versioning vs. product versioning and stuff like that. It also expresses strong opinions on some versioning schemes popular in the OSS community, but I have them, so I express them. ;-)

I disagree with using the Subversion revision number, for example. You might want to maintain a released version while continuing development in TRUNK, so you'll set up a maintenance branch - and your revision number versioning goes down the drain.

Edit: As a summary, it distinguishes between versioning source files, components, and the overall product. It uses a system of seperate x.y versoning for components and the product, with a nice interdependency between the two that makes tracing which component version belongs to which product version trivial. It also talks about how to handle alpha / beta / release / patch cycles without breaking the system. Actually, it's a modus operandi for the whole development cycle, so you might want to cherry-pick. ;-)

Edit 2: As enough people found my article useful to make this a "Nice Answer", I started working on the article again. PDF and LaTeX versions are now available, a complete rewrite including better language and explanatory graphics will follow as soon as I can find the time. Thank you for your votes!

link|improve this answer
This is an old thread, but your article is really useful. +1! – GmonC Dec 7 '09 at 18:31
As GmonC said, this is an old thread, but I found it, read your linked document, and wanted to say well done. Some excellent thought provoking items in there. Thanks! +1 – Carvell Fenton Feb 17 '11 at 19:19
After reading some of your comments to other answers, I was hoping you'd posted an answer. And I wasn't let down. Nice article. – jontyc Jun 4 '11 at 11:21
feedback

Get yourself some inspiration from Wikipedia: "Software versioning"

link|improve this answer
9  
The main point of SO is making answers available, attached to the question. There's no guarantee your link will continue to work, or link to what it was when you saw it. – Argalatyr Jul 23 '09 at 1:07
1  
I think wikipedia is exception to that,isn't it? – bludger Nov 8 '09 at 13:11
2  
@Ravi - maybe, but it could be vandalized. SO requires reputation to edit. A summary at least would be better for people skimming this question. – Nathan Long Mar 19 '10 at 10:39
@Nathan, if you use SO, you surely can use Wikipedia's article edit history. – Mircea Chirea Jun 11 '10 at 17:51
5  
@iconiK - If you use SO, you surely understand that "Here's a clear, concise answer on the same page with other answers" is more helpful than "here's a link to a different site where you can dig through old versions of an article and maybe find something relevant." – Nathan Long Jun 12 '10 at 16:50
feedback

See Semantic Versioning

link|improve this answer
1  
+1: We should all do this, and the worry about bigger problems. – WW. Sep 19 '11 at 3:20
feedback

It's pretty popular these days to just use the Subversion revision number.

link|improve this answer
See my answer - SVN revision number breaks once you set up a maintenance branch. – DevSolar Mar 5 '09 at 15:46
Using the SVN revision as PART of your version number is very common/popular. Using only the SVN revision number has plenty of problems, such as what DevSolar points out. – rmeador Mar 5 '09 at 16:10
feedback

"Version numbers" are a matter for your internal version control system. Release numbers are a different matter (and should be KEPT different).

Stick to a simple MAJOR.MINOR release system (like v1.27), where MAJOR is the compatibility level (version 2.x is incompatible with or at least majorly different from version 1.x) and MINOR is your bugfix releases or minor enhancements. As long as you follow the X.Y format, you can also use other systems like YEAR.MONTH (2009.12) or YEAR.RELEASE (2009.3). But really you're probably best sticking to MAJOR.MINOR unless you have a good reason not to.

Definitely don't use anything that doesn't fit the X.Y format, as it'll make it tough for distros, announcement websites, etc. to work with you, and that alone could seriously affect your project's popularity.

Use branches and tags in your (preferably distributed) version control system to mark specific internal version numbers as relating to MAJORS and MINORS respectively.

And yes, 1.0 should be stable. All releases should be stable, unless they're marked alpha, beta, or RC. Use Alphas for known-broken-and-incomplete. Betas for known-broken. RCs for "try it; you'll probably spot things we missed". Anything without one of these should (ideally, of course) be tested, known good, have an up to date manual, etc.

link|improve this answer
I agree what the user sees and what you build are two different things, but don't you have to link the two somehow? i.e. your release and version numbers should be related and you should be able to discover a version number form a release number – Jeffrey Cameron Mar 5 '09 at 16:12
With open source, we don't care about build numbers. We distribute source code, and builds are up to the distros. If they see a bug in their version, but not in the source release, then they did something wrong in the build. Otherwise, it's the code for that release tag. Tags are visible in VC too. – Lee B Mar 5 '09 at 22:21
feedback

We've spent way too much time deciding when to increment the major version. Some shops would rarely do it so you would have releases like 1.25.3 and others would do it for ever release giving you 15.0

I got fed up with that and convinced everyone the major release number is just the year and the minor is just a sequential release within the year. The users seemed to like it and it's a no-brainer to come-up with the next version number.

Year.Release.build

  • year = current year
  • release = sequence # of public releases with new functionality - reset to 1 every year
  • build = incremented for bug fixes and internal releases

EDIT

** Now this was for an internal app that was continually enhanced **

This would probably not work for commercial apps where it's important to have major releases at different times of the year for marketing and financial purposes.

link|improve this answer
...which makes the first release of a new year a "major release" automatically, no matter how significant the changes. And you cannot do a "major" release within the year, either... – DevSolar Mar 6 '09 at 11:12
True - but this was an internal app... – DJ. Mar 6 '09 at 16:19
feedback

If it's in SVN then why not use the SVN revision number?

If you look at the bottom right of this web page you'll see the Stack Overflow version number which is the SVN revision number.

link|improve this answer
See my answer - SVN revision number breaks once you set up a maintenance branch. – DevSolar Mar 5 '09 at 15:47
feedback

Versioning is up to you; I'd put 1.0 on the first version I was confident in. You may want to follow it up quickly with other versions, since some software vendors have given 1.0 a bad reputation.

You do want some way of tying the version number to the exact build used, but you probably want it to be nice and simple for your end users. Consider using standard version numbers, and tagging the SVN repository with the version number included.

link|improve this answer
feedback

While just going with the Subversion revision number is nice and simple, it does remove information from the version number. Users might consider this a bad thing.

I assume that your webapp will have some kind of deployment procedure, so that not each revision in Subversion is actually published. Since it is impossible from the "outside" (from the user's perspective) to determine when releases are being made, and how many revisions the code will undergo between them, it makes the numbers almost random. They will be increasing, and I guess it's possible to surmise some kind of distance from comparing two revisions, but not much.

Classical version numbers tend to "dramatize" releases, so that users can build some kind of expectation. It is easier to think "I have version 1.0, now version 1.1 is out adding this and that, that sounds interesting" than to think "yesterday we ran SO revision 2587, today it's 3233, it must be lots better!".

Of course, this dramatization can be inflated too, with companies picking version numbers that are meant to sound more interesting than is motivated by the actual differences in the product, I guess going with the revision number counters this a bit.

link|improve this answer
feedback

I have very little experience in the area. However, here's what I'd do:

  1. Choose a scheme for numbering revisions and stick to it. Be consistent.
  2. Each version change should represent a significant change. How small a change is significant and the levels of change that are reflected in the version number are up to you.

Of course, you can just use the svn revision number --- like many others have suggested!!!

I hope this helps.

link|improve this answer
feedback

I would question why you even need a public facing version number. Plenty of successful commercial web apps do without.

link|improve this answer
feedback

The reason why this question exists is because we don't have a single agreed upon way to do configuration management.

The way I like to do version number is just increment integer from 1. I don't want a multi part version number that I will have to explain or document. And I don't want to use SVN rev number as that will require some explaining as well.

You would need some release scripts on top of SVN to make this happen

link|improve this answer
feedback

We use a simple major.minor.julian_date syntax.

Where;

  • major - First release is 1 and then when we introduce major new features or changes so significant they are not backwards compatible increase this number.
  • minor - The major milestone releases. For each build pushed by production this number increases.
  • julian_date - The Julian Day the build was pushed to QA.

Example of the first release pushed to QA on 1/15 is -> 1.0.015
Example of the first release pushed to Production on 3/4 is -> 1.1.063

It's not perfect, but handy as we push builds to QA near daily.

link|improve this answer
feedback

Some good info here:

When to Change File/Assembly Versions

First of all, file versions and assembly versions need not coincide with each other. I recommend that file versions change with each build. But, don’t change assembly versions with each build just so that you can tell the difference between two versions of the same file; use the file version for that. Deciding when to change assembly versions takes some discussion of the types of builds to consider: shipping and non-shipping.

Non-Shipping Builds In general, I recommend keeping non-shipping assembly versions the same between shipping builds. This avoids strongly-named assembly loading problems due to version mismatches. Some people prefer using publisher policy to redirect new assembly versions for each build. I recommend against that for non-shipping builds, however: it doesn’t avoid all of the loading problems. For example, if a partner x-copies your app, they may not know to install publisher policy. Then, your app will be broken for them, even though it works just fine on your machine.

But, if there are cases where different applications on the same machine need to bind to different versions of your assembly, I recommend giving those builds different assembly versions so that the correct one for each app can be used without having to use LoadFrom/etc.

Shipping Builds As for whether it’s a good idea to change that version for shipping builds, it depends on how you want the binding to work for end-users. Do you want these builds to be side-by-side or in-place? Are there many changes between the two builds? Are they going to break some customers? Do you care that it breaks them (or do you want to force users to use your important updates)? If yes, you should consider incrementing the assembly version. But, then again, consider that doing that too many times can litter the user’s disk with outdated assemblies.

When You Change Your Assembly Versions To change hardcoded versions to the new one, I recommend setting a variable to the version in a header file and replacing the hardcoding in sources with the variable. Then, run a pre-processor during the build to put in the correct version. I recommend changing versions right after shipping, not right before, so that there's more time to catch bugs due to the change.

link|improve this answer
feedback

Or to use your 'thought' version number comma subversion number.. z.B.:

1.0.101 // revision 101, release

or 1.0.101-090303 // with release date, i use this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.