Questions tagged [versioning]

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

The following are some popular versioning software used:

  1. Git
  2. Subversion (SVN)
  3. Microsoft TFS
3122 questions
2
votes
1 answer

PHP automatic versioning on static pages errors

I'm using a PHP script along with some .htaccess rules for cache busting for automatically versioning files on a static website. The source of the script is…
questy
  • 517
  • 2
  • 4
  • 14
2
votes
0 answers

SVN tree conflicts on merge after reintegrate branch

I have a problem. Normally I work using Tortoise SVN and every month to work on the development of the code I use a branch structure that looks like this: trunk ----- b1 | | | --------->| | |----- b2 | | | |…
Emil J
  • 215
  • 2
  • 4
  • 20
2
votes
1 answer

iOS App: Is it possible to figure if a user has bought a certain version of your app

In iOS, is there a way to figure out the version of app the user originally bought from? For example, what if i want to implement some special behavior only for user who purchased v1.0. one obvious "feature" is disable in-app purchase so they can…
kawingkelvin
  • 3,649
  • 2
  • 30
  • 50
2
votes
2 answers

Embed version information via metadata?

I have an application using MEF to load extensions, and I'd like to be able to retrieve the (assembly) version information before MEF actually loads the extension. I believe this could be done if the assembly information was embedded in the…
Eric
  • 2,207
  • 2
  • 16
  • 16
2
votes
3 answers

In Wix how do I format version from X.X.X.X to X.X.X

I have a product where the customers expect a 3 part version number like 1.2.3 but internally we use 1.2.3.4. The version is set automatically in the Wix installer, so how do I drop the last number (4)?. Context The last number, in the example '4',…
Rob Smyth
  • 1,768
  • 11
  • 19
2
votes
1 answer

can a jar file, like a .net assembly, be versioned programmatically?

When I right click on a .net exe file and go to "properties" and then "details" there is an entry named "File Version" which corresponds to the value specified in the System.Reflection.AssemblyFileVersion assembly attribute as well as an entry named…
John Smith
  • 4,416
  • 7
  • 41
  • 56
2
votes
2 answers

Magento Css Versioning

wondering if anyone has done/knows how to complete this functionality: http://code.marksserver.co.uk/magento/css-magento/magento-add-css-versioning/1045/ i have implemented it within my head.php file - and im seeing the amended css file name with…
chrismmmmm
  • 55
  • 2
  • 5
2
votes
2 answers

Versioning WCF service with a routing service

I have been tasked with working out a versioning strategy for a new suite of WCF services. Much of the reading I have done recommends the use of an intermediate routing service to forward on calls to the appropriate service version. I understand how…
John
  • 605
  • 2
  • 7
  • 17
2
votes
2 answers

Do we need Assembly version numbers in a asp.net mvc website project?

Situation - We have a .net mvc solution with WCF layer. the solution has about 20 odd projects that get compiled into DLL. the site is running on SQL server 2008. we maintain the SQL scripts in the solution folder as versions. So we have SQL scripts…
Sunny
  • 53
  • 5
2
votes
1 answer

Logical Maven version numbering

Arg, I'm pretty sure this is a simple one but it's hurting my brain heh. Can I please get some input from the community? Ok.. Let's say I just released version 1.2.3. My next release version will be 1.2.4. So will my current working version be…
Sean Connolly
  • 5,692
  • 7
  • 37
  • 74
2
votes
1 answer

After update VS2012 project won't compile, SQLite not installed error

When I fired up Visual Studio this morning, it informed me of a couple of updates to install: the VS feedback tool, and SQLite. I installed both, and restarted VS 2012. But then a "funny" thing happened on the way to compilation of my project: With…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
2
votes
1 answer

Why J2EE 1.4 and Java EE 5 naming?

Can anybody explain why the difference in naming of two version of Java Enterprise Edition. J2EE 1.4 and next version is Java EE 5. What would be reason behind this?
Zuned Ahmed
  • 1,357
  • 6
  • 29
  • 56
2
votes
0 answers

Maintain a .NET WebServices API across multiple releases with minimal effort

I have been reading around the solutions to versioning on .NET web services…
user1971085
  • 21
  • 1
  • 2
2
votes
1 answer

Xcode Version & Build Number and submission to iTunes Connect

Hopefully this is a simple question and I'm struggling to understand how xCode & iTunes Connect use and check the xCode applications Version & Build numbers. Also I'm dealing with a legacy application that has never managed the build numbers…
Duncan Hill
  • 547
  • 2
  • 5
  • 16
2
votes
1 answer

how to declare common #define for several projects under the same solution?

I have several projects under the same solution . I want to add this to all my .rc files: #define STR(x) #x #define STRING(x) STR(x) #define TESTER STRING(MACRO1.MACRO2) MACRO1 = 9 MACRO2 = 10 these are two macros that I added at the property…
user1391863
  • 137
  • 3
  • 12