How do other development teams approach version numbers?

帅比萌擦擦* 提交于 2020-01-14 09:55:30

问题


Our application is quite mature, and thus we are up to version 16. However, this can give the impression that the software is old and out of touch (how many commercial applications are there with a version 20+??)

Obviously, version numbers are quite arbitrary - what do other people use? I quite like the Ubuntu approach of month.date, but I'd like to see what other strategies people use.


回答1:


We tend to go with something like 1.20.5, where the 20 is, in your case, the fairly high 'release' number or something.

When we completely re-write a product in a different implementation, it becomes 2.0.0, and so on.

It also means that the beta versions can be 0.2.3, for example.




回答2:


I think it's pretty standard to use a sub-version format like 1.1 or 1.1.2 or something to that effect for just bug fix releases, minor additions, etc... and then plan to increment the main version number on major releases.




回答3:


My company develops product for 19 years, and we have only version - 3. Although we had 1.2, 1.5 and so on. I think this is the best practice.




回答4:


We use Microsoft's system (or at least their documented system - real binaries seem to be rather less consistent):

  1. Major version (incremented on breaking or large changes)
  2. Minor version (incremented on non-breaking or small changes)
  3. Revision number (incremented on each service pack release)
  4. Build number (incremented on each physical build)

Whenever a version part is changed, all parts below it are reset to zero rather than just changing independently.




回答5:


As Christian said, we used major/minor numbers along with month-date for release.

For internal usage, we use CVS's date. In our case, product is fairly small, we refer with md5sum when talking to QA folks.




回答6:


Version numbers can be used to sell upgrades to non-technical people either from the perspective of the software vendor wanting to get people off old versions or the user trying to get management approval to upgrade.

If you were to say that you are using "Version 20" this doesn't immediately mean anything to everyone.

If you say that you are using "Product X 2005" everyone understands that it's a 4 year old product.

(Technical people probably don't care either way!)



来源:https://stackoverflow.com/questions/1795920/how-do-other-development-teams-approach-version-numbers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!