Top "Versioning" questions

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software.

Web Services API Versioning

I offer a small Web Services API to my clients which I plan to evolve over time. So I need …

web-services wsdl versioning backwards-compatibility
Git and the Umlaut problem on Mac OS X

Today I discovered a bug for Git on Mac OS X. For example, I will commit a file with the …

git macos versioning
How I deal with Visual Studio solution and project files in Git?

I usually work with .NET using Git for versioning. In my team, we work in parallel and we often commit …

c# git visual-studio workflow versioning
How to derive application build version string with Git's `describe` command?

I want to compose application build version that is automatically derived from the Git branch name I am on (when …

git versioning auto-versioning
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 …

r versioning packages
Find latest approved version of an SPListItem

I am trying to iterate through the SPListItem.Versions collection to find the latest approved list item. My list item …

sharepoint versioning document-library splistitem
FileVersionInfo and AssemblyInfo

Given this snippet from Blah.dll's AssemblyInfo.cs: [assembly: AssemblyVersion("3.3.3.3")] [assembly: AssemblyFileVersion("2.2.2.2")] And then in a separate .exe: var fileInfo = …

c# .net version-control version versioning
How do I automatically set assembly version during nightly build?

We have a nightly build process that automatically versions all C++ projecs. Here's how it works. There's a common header …

c# .net build versioning nightly-build
How to get version of running executable?

How can i get the version of my running application? i have been using GetFileVersionInfo(ParamStr(0), ...): filename := PChar(ExtractShortPathName(ParamStr(0))); //…

delphi winapi resources versioning delphi-5
When should i create a new branch?

I am using git as the first time for a versioning system. I am starting a new project, and therefore …

git branch versioning