Tagged Questions

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.

learn more… | top users | synonyms

110
votes
7answers
12k views

Mercurial .hgignore for Visual Studio 2008 projects

What is a good setup for .hgignore file when working with Visual Studio 2008? I mostly develop on my own, only occasionly I clone the repository for somebody else to work on it. I'm thinking about ...
54
votes
30answers
4k views

Java: Out with the Old, In with the New

Java is nearing version 7. It occurs to me that there there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java; where the methods ...
50
votes
7answers
2k views

A definite guide to API-breaking changes in .NET

I would like to gather as much information as possible regarding API versioning in .NET/CLR, and specifically how API changes do or do not break client applications. First, let's define some terms: ...
47
votes
9answers
20k views

Build and Version Numbering for Java Projects (ant, cvs, hudson)

What are current best-practices for systematic build numbering and version number management in Java projects? Specifically: How to manage build numbers systematically in a distributed development ...
44
votes
20answers
9k views

Free version control services? [closed]

What free version control service would you recommend? I'm not looking for a complete project management service like Sourceforge, just something so I don't have to run a SVN/GIT server myself.
43
votes
10answers
4k views

How do I sync the SVN revision number with my ASP.NET web site?

Stack Overflow has a subversion version number at the bottom: "svn revision: 679" I want to use such automatic versioning with my .NET web, win forms, wpf projects/solutions. How do I implement this? ...
40
votes
15answers
5k views

Database Design for Revisions?

We have a requirement in project to store all the revisions(Change History) for the entities in the database. Currently we have 2 designed proposals for this: e.g. for "Employee" Entity Design 1: ...
37
votes
8answers
24k views

How to have an auto incrementing version number (Visual Studio)?

I want to store a set of integers that get auto incremented at build time: int MajorVersion = 0; int MinorVersion = 1; int Revision = 92; When I compile, it would auto-increment Revision. When I ...
36
votes
11answers
16k views

How can I force clients to refresh JavaScript files?

We are currently working in a private beta and so are still in the process of making fairly rapid changes, although obviously as usage is starting to ramp up, we will be slowing down this process. ...
33
votes
4answers
5k views

Definition of “downstream” and “upstream”

I've started playing with Git and have come across the terms "upstream" and "downstream". I've seen these before but never understand them fully. What do these terms mean in the context of SCMs and ...
28
votes
6answers
18k views

How can I auto increment the C# assembly version via our CI platform (Hudson)?

Myself and my group are horrendous at incrementing assembly version numbers and we frequently ship assemblies with 1.0.0.0 versions. Obviously, this causes a lot of headaches. We're getting a lot ...
27
votes
14answers
9k views

How do you version your database schema?

How do you prepare your SQL deltas? do you manually save each schema-changing SQL to a delta folder, or do you have some kind of an automated diffing process? I am interested in conventions for ...
27
votes
8answers
2k views

Versioning Database Persisted Objects, How would you?

(Not related to versioning the database schema) Applications that interfaces with databases often have domain objects that are composed with data from many tables. Suppose the application were to ...
27
votes
10answers
26k views

How do I export (and then import) a Subversion repo?

I'm just about wrapped up on a project where I was using a commercial SVN provider to store the source code. The web host the customer ultimately picked includes a repository as part of the hosting ...
22
votes
12answers
7k views

How to “unversion” a file in either svn and/or git

It happens to me all the time. I accidentally version a file, I do not want to be versioned (i.e. developer/machine specific config-files). If I commit this file, I will mess up the paths on all the ...
19
votes
8answers
3k views

Temporarily put away uncommited changes in Subversion (a la “git-stash”)

While programming software stored in a Subversion repo, I often modify some files, then notice that I'd like to do some preparatory change for my main work. E.g. while implementing new functionality, ...
19
votes
4answers
1k views

How can I automatically update Perl modules' $VERSION with Git?

Let's say, a team of programmers is doing a web application in Perl and uses git to host their code. Now they have a small problem with versioning their modules: Perl::Critic and PBP both recommend ...
19
votes
5answers
5k views

Best practices for assembly naming and versioning?

I am looking out for some good practices on naming assemblies and versioning them. How often do you increment the major or minor versions? In some cases, I have seen releases going straight from ...
18
votes
21answers
1k views

Version Control for a total newbie

I'm totally new to the world of programming and understand very little in terms of jargon and typical methodology. A while ago I was writing some code, but accidentally deleted some good code while I ...
17
votes
2answers
1k views

rails 3 response format and versioning using vendor MIME type in the Accept header

Preamble: I investigated how to version an API and found several ways to do it. I decided to try peter williams' suggestion and created new vendor mime types to specify version and format. I could ...
17
votes
5answers
492 views

Why are there so few versioning file systems? [closed]

I did some literature research about versioning file systems. Versioning was already common practice in the very early operating systems such as the influential but almost forgotten Incompatible ...
17
votes
4answers
8k views

How do I get the Click Once Publish version to match the AssemblyInfo.cs File Version

Every time I publish the Application in Click Once I get get it to update the revision number by one. Is there any way to get this change automatically to change the version number in AssemblyInfo.cs ...
16
votes
13answers
4k views

Best Practice: Software Versioning

I couldn't find a similar question here on SO, but if you find one please link. Is there any guideline or standard best practice how to version a software you develop in your spare time for fun, but ...
15
votes
6answers
6k views

Build numbers: major.minor.revision

How would you write a build.xml file, using neither custom code nor external dependencies (such as a shell script), that: Generates a build number of the form major.minor.revision (e.g., 01.02.34). ...
14
votes
2answers
3k views

Getting runtime version of a Silverlight assembly

I want to show my Silverlight 3 application's version number in the about box, but when I use a traditional .Net call like: Assembly.GetExecutingAssembly().GetName().Version; I get a ...
14
votes
8answers
668 views

Historic reason for using periods in version numbers?

Is there a historic reason that periods are used instead of any other separator for software versions? One of our products was previously version 3.5, and now it's 3.08 -- I'm sure this was ...
14
votes
4answers
3k views

Database - Data Versioning

I've read a few questions on SO (such as this one) in regards to versioning your data within a database. I liked some of the suggestions that were mentioned. I have for the longest time wanted ...
14
votes
13answers
711 views

How do you version your projects?

I understand that Microsoft uses this template when versioning their products: Major.Minor.Build.Revision. Major is changed when the "developers" want to show that there is a big change in the ...
13
votes
16answers
1k views

Version numbering basics?

Suppose I have a web application with some basic functions. I want to market it. So I would like to assign a version number - something like 0.0.1. What I want to know is are there any constraints ...
13
votes
2answers
3k views

How do I switch to another subversion branch in Intellij?

What is the concept of switching branches in IntelliJ? I must be either blind or an idiot... I would assume there'd be a "switch to copy" option or something like that, but there is none... EDIT for ...
13
votes
3answers
4k views

Will .Net 4.0 include a new CLR or keep with version 2.0

Will .Net 4.0 use a new version of the CLR (v2.1, 3.0) or will it stick with the existing v2.0? Supplementary: Is it possibly going to keep with CLR v2.0 and add DLR v1.0? Update: Whilst this might ...
13
votes
3answers
2k views

Best practices for versioning your services with WCF?

I'm starting to work with my model almost exclusively in WCF and wanted to get some practical approaches to versioning these services over time. Can anyone point me in the right direction?
12
votes
3answers
710 views

How to manage object revisions in Grails?

I need to implement a revision system for articles in my grails web app. After searching grails forum, stackoverflow, grails plugins and googling internet, I have ended up with 3 options: Option 1 - ...
12
votes
8answers
2k views

C# Interfaces with optional methods

I understand that interfaces are contracts and any changes (even additions) break any dependent code. However, I could have sworn I read something a while back that one of the recent .NET versions ...
12
votes
11answers
1k views

Version numbers is 1.13 > 1.2?

I know from the .NET perspective that an assembly with a version of 1.13 is considered a newer release than version 1.2 because each number in the version is evaluated individually. However from a ...
12
votes
9answers
6k views

How do you compare two version Strings in Java?

Is there a standard idiom for comparing version numbers? I can't just use a straight String compareTo because I don't know yet what the maximum number of point releases there will be. I need to ...
12
votes
8answers
2k views

What is the best way to use assembly versioning attributes?

The AssemblyVersion and AssemblyFileVersion attributes are the built-in way of handling version numbers for .NET assemblies. While the framework provides the ability to have the least significant ...
12
votes
14answers
5k views

Version Control for Graphics

Say a development team includes (or makes use of) graphic artists who create all the images that go into a product. Such things include icons, bitmaps, window backgrounds, button images, animations, ...
11
votes
2answers
1k views

What's the difference between a dll's FileVerison and ProductVersion?

What's the difference between a dll's FileVersion and ProductVersion? Specifically at runtime, is one used for strong binding, and the other informational? I'd like to have one set manually, and ...
11
votes
5answers
11k views

How do I set the version information for an existing .exe, .dll?

As part of our build process I need to set the version information for all our compiled binaries. Some of the binaries already have version information (added at compile time) and some do not. I ...
10
votes
5answers
262 views

C# projects, proper versioning, company, etc on deployment

My company is working towards moving our development from C++.net into C#. Our product has standard monthly release (for instance, 5.0.19.2...). In in C++.net, we had a common app.rc file, that ...
10
votes
1answer
381 views

How do you use multiple versions of the same R package?

In order to be able to compare two versions of a package, I need to able to choose which version of the package that I load. R's package system is set to by default to overwrite existing packages, so ...
10
votes
3answers
623 views

Maintaining both free and pro versions of an application

I want to create a PRO version of my application for Android and was wondering how to structure my repository. For know I have a trunk and feature branches. I'd like to put a pro version in another ...
10
votes
1answer
518 views

Pros and Cons of Web Services Versioning Strategies

Update 20100224 I really don't need some lame definitions from some vendor website. What I am looking for is practical implementation and challenges faced in the daily IT/business cycle for people who ...
10
votes
4answers
260 views

Class versioning to support backwards compatibility

In the project I work on, we handle Medical Billing. Every time the state makes a change to the official form (which our data classes represent), in order to maintain backward compatibility with ...
10
votes
4answers
3k views

CouchDB versioning strategy

Would the following be a viable strategy for implementing versioning(using "example" as a sample document type): Have one original document where the type field is named example_original. Subsequent ...
10
votes
5answers
310 views

Why would a site display SVN version and what are the advantages?

I have not used SVN so far. Why would a Web site (such as Stack Overflow, for example) display a SVN version at the bottom? What version is it? And what are the advantages of displaying it in public? ...
10
votes
13answers
6k views

A regex for version number parsing

I have a version number of the following form: version.release.modification where version, release and modification are either a set of digits or the '*' wildcard character. Additionally, any of ...
9
votes
4answers
178 views

Develop Version Numbering for an Application

Firstly, I think this forum is not appropriate for my question, so if it is in wrong place, kindly forgive and place wherever appropriate. I didn't find proper forum for my question. I have developed ...
9
votes
4answers
188 views

How should external DLL files be versioned

Whenever we add a DLL as reference to our project, the source location is always referenced and if that happens to be outside our project folders, someone checking out the latest code-base will not be ...

1 2 3 4 5 18