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
1 answer

TeamCity AssemblyInfo patcher Patches file, but DLL version isn't "right"

Here's what my assemblyinfo.cs version strings look like pre build: [assembly: AssemblyVersion("2.0.0920.10")] [assembly: AssemblyFileVersion("2.0.0920.10")] During the build, the patcher does what I want, modifies the files: [assembly:…
Dzejms
  • 3,108
  • 2
  • 30
  • 40
1
vote
0 answers

Versioning via Git Tag in Jetbrains Space Automation

I am currently trying to solve a versioning problem in my application: I want to use the git tag as a version number inside a JetBrains Space automation script. My .space.kts is based on a template from the official docs and contains the following…
1
vote
1 answer

How to put content of multiple directories (each representing different versions) into one local git repo

I have one folder, let's call it Product1.0 and multiple other folders like Product1.1, Product1.2, etc which are modified versions of Product. I want to put this entire thing in one local git repo, and manage it such that content of Product1.1 will…
1
vote
1 answer

Automating angular project versioning using standard-version npm package

I have an angular workspace with the structure below - AngularProject - projects - lib1 - lib - package.json - src - app - package.json lib1 is a package that is to be published to npm. I want to…
1
vote
1 answer

Best-practices for versioning of Flex applications

Can anyone recommend a way to do versioning in Flex applications? Should I embed a version string somewhere in the swf? Should the version be part of the URL? Should it be in code?
Assaf Lavie
  • 73,079
  • 34
  • 148
  • 203
1
vote
1 answer

How to automatically generate versions for python packages in a monorepo?

When it comes to generate versions using conventional commits from a repo that contains only one python package things are easy, you just need to use one tool that loops through all the repo commits and compute the version by parsing these…
BPL
  • 9,632
  • 9
  • 59
  • 117
1
vote
2 answers

Does the version of dependent assemblies is stored in the referring assembly?

The following saying is quoted from this article in MSDN. ... strong-name signing makes servicing more complicated. Under current versioning policy, an assembly will always attempt to load the exact version of the assembly it was built against.…
TonySalimi
  • 8,257
  • 4
  • 33
  • 62
1
vote
1 answer

Poetry skipping dependencies with both lower and upper bounds as "Invalid Constraint"

I am working on a project (let's call it X) which depends on another public package. Let's call it A. Package A has the following dependencies in the requirements.txt…
1
vote
1 answer

How to allow to "forget" objets types in boost::serialize

I use Boost to serialize classes I register with register_type, as described here. Later, if I decide a specific class is no longer useful, and I want to open old file and discard the forgotten class instances, I don't have a way to do it. How can I…
Hugal31
  • 1,610
  • 1
  • 14
  • 27
1
vote
2 answers

Modelling versioning when versions are related

I'm modelling a class diagram and I'm absolutely stuck with this issue: My new web application has "cards" (entries about a subject) which can be modified by the users, à là wiki. But unlike wikis, different cards hold different data. Also unlike…
1
vote
0 answers

How to name multiple SNAPSHOT versions that shoud be later merged in one release?

Me and my teammate are using Nexus repository to store JAR files that are builded from develop branch before we test it and are ready to release the SNAPSHOT version. This is our branch structure in the repository: main - one branch, used just for…
Chuck Nuris
  • 71
  • 1
  • 6
1
vote
1 answer

Proper directory structure for app versioning (Django)

I am currently starting work on a existing Django Project, and I need to make changes to the existing APIs. However, I can't change the existing code since old apps and sites have been using it, which might take a lot of time to change the…
1
vote
0 answers

Glossary Web Part for SharePoint 2007 / Glossary jQuery / Glossary Management System

Is there a Glossary Web part in SharePoint 2007 that can do the following: [1] It allows user to enter keyword and its description. Example: Keyword: HTML Description: Hypertext Markup Language (HTML) is the predominant markup language for web…
Wilson Tan
  • 187
  • 1
  • 2
  • 7
1
vote
0 answers

What's the meaning of "[" and ")" in semver (Semantic versioning) which is used in SCA Analysis

I already spent a week with semver, and got the basics, i'm not able to understand what's the meaning of "[" and ")" in semver. I'm using https://www.npmjs.com/package/semver to compare versions in my project. However, I can see some lib's versions…
rohitcoder
  • 401
  • 1
  • 7
  • 18
1
vote
1 answer

Power BI - Filtering model on latest version of all attributes of all dimensions through DAX

I have a model that's comprised of multiple tables containing, for every ID, multiple rows with a valid_from and valid_to dates. This model has one table in that is linked to every other table (a table working as both a fact and a dimension). This…