views:

366

answers:

4

Are there any software versioning standards? Or i can change version of my product, when i have made some changes to it?

Is there any percentage in changes, by which i can say, what version this product will have?

+2  A: 

No rules. You decide.

There seems to be a common agreement:

  • You increment the version number when you make significant changes or the amount of service packs and updates makes the application noticeably advanced over the original version.

  • The smaller a change is, the smaller the increment in subversion numbers. Bug fix -> behavior change -> new feature -> service pack for lots of features -> some big change or a new module.

Developer Art
+1  A: 

Some people have proposed software version number conventions. Here are two:

Greg Hewgill
A: 

There is some good advice in Software Release Practice HOWTO.

Jonathan Leffler