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
1
vote
2 answers

Adding version infomation to an OSX command line application

On Windows I'd simply add an RC file with the right data. Do I need to assemble a bundle as usual with an info.plist/version.plist or is there a better, standard, way of doing things? This is for Snow Leopard and later if that is relevant. Thx++
J Evans
  • 1,090
  • 2
  • 16
  • 36
1
vote
0 answers

How to test maven version-ranges?

What's the best way to test the validity of version-ranges in maven builds? For example, let's say I have a module that depends on slf4j versions [1.5.0,1.7.0). I think that the only way to be confident that the range is correct is to build and test…
Craig P. Motlin
  • 26,452
  • 17
  • 99
  • 126
1
vote
1 answer

How can i set what version of a product I'm in Eclipse?

I've created, debugged, and revised a project that I've been working on, but now I want to be able to specify what version of the binary I'm on. I'm using Eclispe-CDT with MinGW to make this project on my local system, so there is no versioning…
Caleb Waggoner
  • 147
  • 1
  • 2
  • 13
1
vote
1 answer

What contract version policy to use in a single client, multiple server environment

I have read a few articles on the net about versioning WCF contracts. Here are a couple: WCF Versioning Guidelines MSDN: Versioning Strategies Now, I kind of understand the basics about contract versioning but all of these articles are (of course)…
Anttu
  • 1,076
  • 1
  • 10
  • 21
1
vote
1 answer

Polygon draw in ActionScript 3.0 - Vector. Vector. drawPath() Flash Player 10 vs 9 error

I am working on a Flash application that draws polygons vertex by vertex line by line from a few tutorials. The problem - I have it all working in Flash Player 10, but need it in Flash Player 9. When I convert it to Flash Player 9, I get these…
TV-C-1-5
  • 680
  • 2
  • 13
  • 19
1
vote
2 answers

Teamcity Weekly Release Versioning and Workflow

I'm trying to get a weekly release up and running in TeamCity and I'm having a hard time trying to comprehend how I'm going to version it. Currently versioning goes as follows [major].[minor].[buildnumber].[svnrevision] major = major release …
Jonn
  • 4,599
  • 9
  • 48
  • 68
1
vote
2 answers

how to update from two sources using subversion?

In our Production environment we have JBoss running in a clustered mode with 4+ nodes. The base JBoss is present in subversion and then we have some local changes on each nodes. What should be the strategy where we can have base JBoss at one…
Bharat Sinha
  • 13,973
  • 6
  • 39
  • 63
1
vote
1 answer

How to do versioning of shared java libarary for multiple Spring Boot releases

I am creating a shared library that will be used in many projects in my company. Those projects are based on different Spring-Boot versions. The same version of library won't work (as far as I know) for example on Spring Boot 3.0.0 and 2.7.10…
1
vote
1 answer

SemVer: what if I need to support several customer-specific versions?

Given I have a product which follows SemVer versioning approach. Given I have several customers which receive builds of my product. Given 2 customers at once are asking me to make a hotfix to their version 1.2.3 How should I version the two…
MiamiBeach
  • 3,261
  • 6
  • 28
  • 54
1
vote
0 answers

Determine Visual Studio Code extension compatibility without VSIX download

I need to build an offline setup for a VScode IDE with some required VScode extension packages for python. The only available version of the VScode IDE that I'm able to use is 1.77.3, so that is NOT a variable here (well, it might be, but isn't…
1
vote
1 answer

.NET API Versioning: How to use default version only when unspecified, not when requested version is invalid

I'm building a .NET 6 API Service with versioning via Content-/Accept-Header (with Microsoft.AspNetCore.Mvc.Versioning). I want the following behaviour to work: If no version is specified via the HTTP-request-header, a default version shall be…
Tim
  • 143
  • 1
  • 5
1
vote
1 answer

Is it reliable to use Gits functionality from Netbeans?

Is it reliable to use Gits functionality from Netbeans? If you use Netbeans editor, what do you use for Gits?
I'll-Be-Back
  • 10,530
  • 37
  • 110
  • 213
1
vote
0 answers

Version numbers of modular software architectures

We are just desperately looking for a way to get our software versioning for our new software system correctly and I think we could need some help :) OK so the situation is, that we are developing a modular test software that is based on a plugin…
Jensolo
  • 49
  • 6
1
vote
0 answers

.NET CORE 6 WPF and Class Library versioning noob questions

This is probably a very basic question, but after reading about it I am still confused... Ok, so I have an WPF app, MyApp, that uses my class library MyLib. The coding is almost done now, and I am about to start deploying it to my customers, but as…
patsy2k
  • 471
  • 2
  • 8
1
vote
0 answers

how to efficiently setup file structure in api versioning?

stack: node express restful api Goal:two version api, v1 and v2, I wish these two versions api running on the same server at the same time. project layers:router/controller/service/model folders solutions: option 1.v2 could copy all folders from v1,…
feeco
  • 75
  • 4