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

ADO Library References and Forward Compatibility

I'm looking to add some Access database functionality in a customer's Excel workbook app. Okay Excel & VBA aren't my first choice, but that is what we're working with. Normally I use ADO through ADO.NET, so we always know the version because we've…
winwaed
  • 7,645
  • 6
  • 36
  • 81
2
votes
1 answer

Does C#/.NET have a built-in "VersionNumber" class?

I need to keep track of an arbitrary version number in my C# application, which has the form M+.m+.b+, where M is "Major", m is "minor", b is "build", and + indicates that the version number is not restricted to one digit per number. Is there a…
Eric Dand
  • 1,106
  • 13
  • 37
2
votes
2 answers

best practice to persist classes model

My application contains a set of model classes. e.g. Person, Department... The user changes values for instances of these classes in the UI and the classes are persisted to my "project" file. Next time the user can open and edit the project. Next…
Yaron Naveh
  • 23,560
  • 32
  • 103
  • 158
2
votes
1 answer

Side by side versioning of Windows workflow 4.5- how to load correct versions of business dll

I have hosted two versions of workflow (WF 4.5). Followed the instructions as in this MSDN sample- https://code.msdn.microsoft.com/windowsapps/Side-by-Side-Versioning-0fe24cd3. The side-by-side functionality provided allows a workflow service to be…
2
votes
1 answer

jboss envers for versioning?

I have entities that required versioning support and from time to time, i will need to retrieve old version of the entity . should i just use options available 1. http://stackoverflow.com/questions/762405/database-data-versioning 2. jboss envers …
cometta
  • 35,071
  • 77
  • 215
  • 324
2
votes
1 answer

Share Maven run configurations with other developers using Intellij IDEA

We have the following project setup: Maven, Eclipse, Subversion. Eclipse Launch configurations are in a separate docs folder next to the pom.xml. The launch configurations run something like mvn clean install -Pdev or mvn tomee:run -pl…
Kariem
  • 4,398
  • 3
  • 44
  • 73
2
votes
4 answers

How to validate Windows VC++ DLL on Unix systems

I have a solution, mostly C#, but with a few VC++ projects, that is pushed through our standard release process (perl and bash scripts on Unix boxes). Currently the initiative is to validate DLL and EXE versions as they pass through the process. All…
Guildencrantz
  • 1,875
  • 1
  • 16
  • 30
2
votes
0 answers

Continious Integration Bumping version without commit

Let's say you build a node app via your CI system. Every time you build it you have to increment the node app version to create the new app, and then commit that version back to your git repository But in that exact moment when you were building…
Gerardo
  • 7,457
  • 3
  • 22
  • 17
2
votes
1 answer

IE version check stopped working

I have just released a new version of a web app into test (maven based java app). It checks for old versions of IE and displays a box warning that it is out of date if less than version 9. This is working fine on live and UAT and as far as I can…
2
votes
4 answers

jQuery versioning bug with checkboxes

this simple piece of code works perfectly in jquery 1.8.3 however > jquery 1.8.3 it stops working. What am I doing wrong?
user1557314
  • 169
  • 3
  • 14
2
votes
1 answer

Java best practice of displaying application version number

What is the best practice of displaying the application version number in a Help -> About page within the application? The application is packaged as a EAR file which contains 1 WAR file. From my research I believe this is to store the information…
IanWatson
  • 1,649
  • 2
  • 27
  • 49
2
votes
0 answers

Automatically tag with git and gradle during Android assemble

I saw that a lot of people is using git tag to read the version during build and then assemble however i would like to do the opposite. I already have my version name and code dynamically created in my build.gradle and i want to tag the current git…
FrankMonza
  • 2,024
  • 16
  • 26
2
votes
3 answers

What is the common used or category of version number name specification?

The version number of a software will be like 2.0.0.1 What is the rule of each numbers? In what situation the number will add one?
Sam
  • 409
  • 1
  • 7
  • 16
2
votes
1 answer

how to load c# object side by side

We have serialized value of some objects persisted. Now we want to make substantial changes to some objects. So what i want to do is load older version of object using old assembly then deserialize and serialize again with newer version of the…
mamu
  • 12,184
  • 19
  • 69
  • 92
2
votes
1 answer

Why is twiddle wakka designed like this?

In the twiddle wakka ~> (aka pessimistic operator), why is it designed so that the tidle comes before the inequality? Since it includes the meaning >=, it is more consistent if it were >~. The ~> order makes it difficult to remember, and I often…
sawa
  • 165,429
  • 45
  • 277
  • 381