Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
11answers
3k views

What version numbering scheme do you recommend?

My question is, which version-naming scheme should be used for what type of project. Very common is major.minor.fix, but even this can lead to 4 number (i.e. Firefox 2.0.0.16). Some have a model that ...
12
votes
2answers
676 views

Why is System.Version in .NET defined as Major.Minor.Build.Revision?

Why is System.Version in .NET defined as Major.Minor.Build.Revision? Almost everyone (including me) seems to agree that revision belongs in third place, and "build" or whatever you'd like to call it ...
6
votes
6answers
359 views

What every digit means in software version (1.7.1.0, for example)?

What could every digit mean in software version? (for example, 1.7.1.0) How do you numerate your versions? Thank you.
6
votes
6answers
279 views

How do I differentiate between beta versions and normal versions?

I generally agree that major versions of a program should be 1.0, 2.0, ... and significant updates should be: 1.1, 1.2, ..., and that bug fixes should be at the third level: 1.0.1, 1.0.2, ... 1.0.156 ...
4
votes
5answers
547 views

Where does the version number come from?

I have a version control system (e.g. Subversion) and now I'd like to set up a build process. Now I have to create a version number and insert it into the system. But where does the version number ...
2
votes
1answer
280 views

Check what version of the app is being used [closed]

Possible Duplicate: How to display the current project version of my App to the user? Is there a way to check the version number of my app? Is it supplied somewhere once the app is in the ...
2
votes
2answers
114 views

Selecting Maximum Version Number from Two Columns

This relates to another question I asked previously. You may have a better understanding of this if you quickly scan it. Version Numbers float, decimal or double I have two colums and a foreign in a ...
2
votes
9answers
110 views

What to use as an initial version?

I usually start my projects with a version 1.0.0. As soon as I have some stuff together, I release it as 1.0.0 and move on with 1.1.0. However, this leads to usable but not exactly feature complete ...
2
votes
1answer
360 views

How to embed version number & copyright into my DLL?

I have a VB Express 2008 class library and would like to embed a version number and some copyright/contact info. How do I do that?
1
vote
2answers
84 views

Can I make git print x.y.z style tag names in a sensible order?

Consider this list of version numbers: 0.3.0 0.3.1 ... 0.3.8 0.3.9 0.3.10 0.3.11 git tag would print them in the following order: 0.3.0 0.3.1 0.3.10 0.3.11 0.3.2 ... I there any way to make git ...
1
vote
1answer
90 views

Why hasn't Linux version number moved beyond 2.6? [closed]

Before 2.6 Linux moved up from 2.0 to 2.2 to 2.4 every few years. Why did it stop at 2.6? Is the version number ever going to go beyond 2.6?
1
vote
1answer
300 views

managing different rails 2.3.x versions in development/production with bundler

I'm trying to configure Bundler to work with different Rails 2.3.x versions using the guide in the bunder website, so I could test a version in dev environment before its used in production. I have ...
1
vote
1answer
226 views

Qmake version number in file name

When compiling a lib with qmake it makes a whole bunch of links to the .so file as well as puts the version number on the end of the .so file. How do I tell qmake to stop doing this as it is annoying. ...
1
vote
1answer
998 views

How to get the IE version number from the Windows registry?

My Java application needs to know what version of IE (if any) is installed on the local machine, and querying the registry seems like the easiest way. What registry key and value should I look up? ...
1
vote
1answer
184 views

Possible to change version numbering scheme for already deployed iPhone app?

Some time ago we released an app to the appstore on a clients account. The client preferred a simple version number scheme, so the apps first version number was 1.0. Since it's release however, there ...
0
votes
1answer
34 views

Setting Teamcity version number with counter from file

I'm currently trying to update the version no. in TeamCity using a Nant build file, containing the version number. If I just use <property name="versionNo" value="2.16.3."/> . . <echo ...
0
votes
1answer
32 views

What is the best versioning way by a project [closed]

It is very confusing with versioning. I saw lots of versioning samples. Some of them contains even subversion information. Many of them looks ok. 0.5 0.1.0 0.0.1.0 5.5.5.2_R139 ... What is the ...
0
votes
2answers
436 views

How to specify Publish Version in Devenv?

I am totally new in building Visual Studio Project through a script, so feel free to correct me if you feel that my understanding about the process is incorrect. I have a visual studio solution which ...
0
votes
3answers
69 views

In software projects there are version numbers how do I do that for my Java project at Eclipse in automatic way?

In software projects there are version numbers how do I do that for my Java project at Eclipse in automatic way ? I'm using Subclipse will it help me set the application version number ?
0
votes
3answers
211 views

java library version numbering using eclipse

I'm developing a library connected SVN @sourceforge, My IDE is Eclipse, so how to setup version numbering ? I guess it's automatic but how do I do that using Eclipse ? NOTE: I'm using Subclipse
0
votes
2answers
140 views

How would I increment the (version) value of an XML element using AWK?

I have an XML file that contains a version number (major.minor.build) element and I'd like to increment that value using awk (leaving the rest of the file untouched). For example, when the file ...
0
votes
2answers
539 views

Invalid product version 'a.b.cd.xy'. Must be of format '##.##.####'. How to change the default version format to have 3 decimal periods

I have a set up project with current version in the format "a.bc.xy". I want to change the version number to "a.b.cd.xy" having 3 decimal periods in the version number. When I changed the version ...
0
votes
2answers
656 views

SQL Server Version Numbers

I need to check SQL Server versions as prerequisites for my software. I found a few places that have the version numbers table but they are inconsistent. For example, according to this website and ...
0
votes
2answers
996 views

How to determine the latest version number of a GAC assembly

I'm trying to create a diagnostic log for my application that will display the latest version number of an assembly installed in the GAC. For example, there are two versions of the same assembly in ...