|
I'm trying to match the parts of a version number (Major.Minor.Build.Revision) with C# regular expressions. However, I'm pretty new to writing Regex and even using Expresso is proving to be a little difficult. Right now, I have this:
(?<Major>\d...
Started by David Brown on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try something like this:
(?<Major>\d*)\.?(?<Minor>\d*)?\.?(?<Build>\d*)?\.?(?<Revision&....
Lt;Major>\d*)\.(?<Minor>\d*)(\.(?<Build>\d*)(\.(?<Revision>\d*))?)?
Makes the third and fourth parts optional.
|
|
I'm currently trying to evaluate Mercurial, to get a feel for the philosophy the system tries to promote - but one thing that's got me confused is the presence of the bundled 'extensions' and how they fit into the mix.
In the core package, Mercurial ships...
Started by buymeasoda on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Are these extensions considered first class citizens by the Mercurial dev team and therefore part of the overall Mercurial approach to DVCS?
Yes, although we won't generally.
Answer part of my question.
|
|
In the Delphi Project Properties dialog, there are settings for the "Product Version" and the "File Version". Can anyone explain the philosophical differences between the two?
Started by Ken Lange on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The File Version will be the version....
version is the version of the product the executable is a part of, like Firedox 3.5.2 - all filesThe Product Version will be the version number of your whole application.
|
Ask your Facebook Friends
|
I had a look at http://stackoverflow.com/questions/389169/best-practices-for-api-versioning , but am not quite convinced of the answer, so I am question the versioning part again with a more specific example. I am having two URIs (one with versioning ...
Started by manuel aldana on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
But this does not make sense in REST terms, the api version itself is HTTP 1.0 or 1.1, which is already sent inside the HTTP request....
I find http://xxxx/v1/user/123 confusing as it suggests that there will be a higher api-version in the future.
|
|
Imagine an application with several released versions: V1.0, V1.1, and V1.2.
Now imagine one or more associated files that are version-specific, for example a user manual, a functional test suite, or some technical documentation. Ideally these files would...
Started by Andrew Swan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Typically this is done by merging from trunk, but it may not be if the change is specific to that version..
You release a new version, then all you have to do is update what you need to on the branch.
|
|
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 AssemblyInformationalVersion...
Started by Rick on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
The file version is also important a different file ....
Not quite.
If you plays an important part in the .NET loading behaviour.
Purposes, whereas the assembly version plays an important part in the .NET loading behaviour.
|
|
I was overseeing branching and merging throughout the last release at my company, and a number of times had to modify our Subversion pre-commit hooks to enforce different requirements on check-in comments and such. I was a bit nervous every time I was...
Started by Owen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
What's wrong ....
(The bug tracking database is located on a different physical backup strategies .
For tools with text file configurations which allow comments, you could the version control software?" bug.
Be checked into version control.
|
|
We use ClearCase at my workplace. Part of our standard process when code is merged to the main (trunk) branch is to completely eradicate all of the versions on development and integration branches. Because this wipes out all of the check-in comments that...
Started by Mike Daniels on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
The main benefit of version control, in my with programmers who....
Projects, you should try to make clean and clear arguments for how you believe version control should version control if you aren't going to keep the versions.
|
|
Microsoft is promoting .Net for over 8 years now.
.Net assemblies are versioned using 4# versioning like major.minor[.build[.revision]] . Ref here
While, Windows Installer still suggests 3# versioning like major.minor.build . Ref here
With the difference...
Started by nils_gate on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Solutions:
Change your assembly version scheme
Don't use the revision part of the assembly version numberWhy would you map .NET assembly versions straight to your product version? Do you really have only, configuration....
|
|
Via fink install I put the following Python version on my Mac OS X computer:
python2.3 , python2.4 , python2.5 , python2.6 . Further, python is alias for python2.6 on my system.
I want to install an egg , e.g. easy_install networkx-0.36-py2.5.egg , where...
Started by SimonSalman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Easy_install is part_install script for each python version:
/usr/bin/easy_install-2.5 /usr/bin/easy_install-2.6 The contents of the 2.6 version looks ....
And include C code that has to be compiled for each python version...
|