Questions tagged [versions]

273 questions
147
votes
28 answers

What do the numbers in a version typically represent (i.e. v1.9.0.1)?

Maybe this is a silly question, but I've always assumed each number delineated by a period represented a single component of the software. If that's true, do they ever represent something different? I'd like to start assigning versions to the…
BeachRunnerFred
  • 17,150
  • 34
  • 132
  • 231
99
votes
7 answers

SVN (Subversion) Problem "File is scheduled for addition, but is missing" - Using Versions

I'm using Versions for SVN. I attempt to commit and get this message: Commit failed (details follow): '/Users/mike/Sites/mysite.com/astss-cvsdude/Trunk/cart/flashfile.swf' is scheduled for addition, but is missing I suppose this is because I…
Mike
  • 991
  • 1
  • 6
  • 3
59
votes
4 answers

How do the .NET Framework, CLR and Visual Studio version numbers relate to each other?

With the recent announcement of .NET 4.0 and Visual Studio 2010, it is becoming ever more difficult to keep track of what .NET Framework versions build on what version of the CLR and belong with which version(s) of Visual Studio. Is there a…
Scott Dorman
  • 40,345
  • 11
  • 74
  • 107
55
votes
8 answers

How best to use File Version and Assembly Version?

In .NET there are two version numbers available when building a project, File Version and Assembly Version. How are you using these numbers? Keeping them the same? Auto-incrementing one, but manually changing the other? Also what about the…
Rick
  • 4,989
  • 2
  • 30
  • 32
42
votes
7 answers

Can you mix .NET framework Versions in a solution?

Our codebase where I work is .NET 2.0. For our new assembly/DLLs/web applications I would love to take advantage of what 3.5 has to offer. Can one mix .NET frameworks(per assembly) in a solution? Are there any IIS related caveats to this? I would…
Micah
  • 9,811
  • 12
  • 60
  • 88
40
votes
6 answers

Getting the subversion repository number into code

I'd like to implement a way of recording the version of a project within code, so that it can be used when testing and to help track bugs. It seems the best version number to use would just be the current revision number from Subversion. Is there…
Ali Parr
  • 4,587
  • 3
  • 27
  • 34
35
votes
3 answers

How to test the current version of GCC at compile time?

I would like to include a different file depending on the version of GCC. More precisely I want to write: #if GCC_VERSION >= 4.2 # include # define EXT std #elif GCC_VERSION >= 4 # include # define EXT…
PierreBdR
  • 38,125
  • 9
  • 41
  • 60
33
votes
9 answers

What version of Android should I develop for?

How should I make the choice ? What are the parameters I should take into account ?
Robert
  • 369
  • 1
  • 3
  • 3
30
votes
4 answers

Python: select one of multiple installed module versions

On my system, I have several modules installed multiple times. To give an example, numpy 1.6.1 is installed in the standard path at /usr/lib/python2.7/dist-packages, and I have an updated version of numpy 1.8.0 installed at…
Jenny
  • 557
  • 1
  • 6
  • 10
29
votes
14 answers

Cornerstone vs Versions for Mac OS X

I've been using svn on the command line for 5+ years, but I'm thinking of switching to GUI. The two kings of Mac subversion apps seem to be Versions and Cornerstone. Most of the reviews/comments I've seen comparing the two are from way back in 2008,…
splicer
  • 5,174
  • 4
  • 39
  • 47
26
votes
4 answers

Compare Version Identifiers

Here is my code, which takes two version identifiers in the form "1, 5, 0, 4" or "1.5.0.4" and determines which is the newer version. Suggestions or improvements, please! /// /// Compares two specified version strings and returns…
Nick
  • 12,805
  • 14
  • 60
  • 95
25
votes
5 answers

How do I get the version of an assembly without loading it?

One small function of a large program examines assemblies in a folder and replaces out-of-date assemblies with the latest versions. To accomplish this, it needs to read the version numbers of the existing assembly files without actually loading…
Jay Cincotta
  • 3,922
  • 3
  • 19
  • 16
22
votes
3 answers

resolving simple svn conflicts

I'm a bit of newcomer to using svn on a mac. I'm using Versions. I've been getting reports that I've been overwriting other devs work, so I'm hoping someone here can make sure I'm doing things properly. I committed my work last night, the other…
Finnnn
  • 3,420
  • 4
  • 40
  • 67
19
votes
5 answers

Java Classloader - how to reference different versions of a jar

This is a common problem. I'm using 2 libraries A.jar and B.jar and these depend on different versions of the same jar. Let's say that at runtime I need THIS.x.x.x.jar MY.jar -> A.jar -> THIS.1.0.0.jar -> B.jar -> C.jar ->…
mickthompson
  • 5,232
  • 11
  • 41
  • 58
14
votes
3 answers

Create branch in Versions (Mac Subversion client)

I have search everywhere but I can't find information on how to create a branch in Versions for Mac. How is this done?
Crashdesk
  • 639
  • 8
  • 27
1
2 3
18 19