version-numbering Questions

6

Solved

Comparing version numbers as strings is not so easy... "1.0.0.9" > "1.0.0.10", but it's not correct. The obvious way to do it properly is to parse these strings, convert to numbers and compare as n...
Faison asked 31/5, 2010 at 5:15

1

I am using setuptools with a pyproject.toml file, and want setuptools to get the package version dynamically from the package contents. Instead, it is always setting the package version in the name...

6

Solved

What could every digit mean in software version? (for example, 1.7.1.0) How do you numerate your versions?
Modiolus asked 7/5, 2010 at 19:18

5

Solved

For a role I'm developing I need to verify that the kernel version is greater than a particular version. I've found the ansible_kernel fact, but is there an easy way to compare this to other versio...
Shipentine asked 29/9, 2016 at 20:51

3

Solved

We are using TeamCity as a CI server and we've been thinking how to implement a method for versioning our releases that is safe (i.e. minimal opportunity for human error) but also that requires the...
Anya asked 7/8, 2012 at 16:17

1

Solved

I created the requirements.txt with pip freeze > requirements.txt. Some modules show the @file..... instead of the version #. What does it mean and why it show? Conda: 4.8.3 Here is the result o...
Incomplete asked 26/6, 2020 at 2:0

19

Solved

We use SVN at work, but for my personal projects I decided to use Git. So I installed Git yesterday, and I wonder what is the revision number equivalent in Git. Let's say we work on version 3.0.8 ...
Leonidaleonidas asked 7/11, 2010 at 22:16

6

Solved

I am seeing a lot of answers for this problem in other languages but I am trying to find out a way to compare 2 version numbers given as strings. For example str1 = "141.1.23" str2 = "141.1.22" ...
Ambidexterity asked 24/2, 2013 at 21:46

1

Say I have two branches: develop and feature. Assume I also have a file called VersionNumber which has the following content: BUILD_NUMBER 1 I want to use Git hooks so that, when I merge feat...
Time asked 4/2, 2018 at 3:20

4

Solved

Why is System.Version in .NET defined as Major.Minor.Build.Revision? Almost everyone (including me) seems to agree that revision belongs in third place, and "build" or whatever you'd like to call i...
Cruces asked 23/6, 2010 at 0:34

2

Solved

There's probably multiple questions here all related. I'm trying to come up with a simple version number update scheme for our 3 mobile apps built from a single xamarin solution. What I'm looking ...
Acheron asked 21/11, 2014 at 9:35

7

Solved

From within an Android Application, how can the hosting device's Build Number, as displayed in System Settings -> About Tablet -> Build Number be obtained programmatically for use within a Java And...
Trailer asked 20/12, 2013 at 5:38

8

Solved

I have been using git flow for a couple of months and it has worked very well. I would like to automate the "bump version" operation. The project is PHP and the footer.php has a token to replace ...
Iulus asked 19/4, 2012 at 12:27

5

Our professor want us to write a program to compare two version numbers, like 0.1 < 0.2 or 1 < 1.1. Also there are some trick ones like .0.4 < .1. So, my idea is first judge if the ...
Propinquity asked 14/10, 2015 at 20:30

2

I working with a project similar to the project described here. So, it has a few modules in parent pom.xml: <modules> <module>../de.vogella.tycho.plugin</module> <module&...
Matchmaker asked 17/7, 2012 at 11:47

3

Solved

My Java application needs to know what version of IE (if any) is installed on the local machine, and querying the registry seems like the easiest way. What registry key and value should I loo...
Conditional asked 18/11, 2010 at 4:29

3

Solved

Consider this list of version numbers: 0.3.0 0.3.1 ... 0.3.8 0.3.9 0.3.10 0.3.11 git tag would print them in the following order: 0.3.0 0.3.1 0.3.10 0.3.11 0.3.2 ... I there any way to make g...
Kicker asked 22/5, 2011 at 22:41

2

Solved

How to set the complete version number from vb6 (VPIaccessMaker.vbg),from Visual Basic i can set Major.Minor.Revision as 3.2.2 in that case my exe version will be 3.2.0.2.How to set build number in...
Bul asked 8/10, 2013 at 9:22

2

I have an utility which fills version numbers in AssemblyInfo.cs files. Now I need to implement a functionality to adjust version numbers for Visual Studio Data-Tier applications (DACPAC). I see t...

1

Solved

I have seen that my Visual C++ projects have the following declarations that use COMMAS instead of DOTS for versions: #define FILEVER 11,0,2,0 #define PRODUCTVER 11,0,2,0 #define STRFILEVER "11, ...
Imaret asked 22/10, 2012 at 7:20

1

Solved

I'm currently trying to update the version no. in TeamCity using a Nant build file, containing the version number. If I just use <property name="versionNo" value="2.16.3."/> . . <echo me...
Humber asked 17/1, 2012 at 13:7

1

Solved

Possible Duplicate: How to display the current project version of my App to the user? Is there a way to check the version number of my app? Is it supplied somewhere once the app is in...
Gleaning asked 28/5, 2011 at 21:10

6

Solved

I generally agree that major versions of a program should be 1.0, 2.0, ... and significant updates should be: 1.1, 1.2, ..., and that bug fixes should be at the third level: 1.0.1, 1.0.2, ... 1.0.1...
Funch asked 21/9, 2009 at 20:17

11

I usually start my projects with a version 1.0.0. As soon as I have some stuff together, I release it as 1.0.0 and move on with 1.1.0. However, this leads to usable but not exactly feature c...
Bradytelic asked 16/9, 2010 at 16:22

5

I have a version control system (e.g. Subversion) and now I'd like to set up a build process. Now I have to create a version number and insert it into the system. But where does the version number ...
Mathewson asked 20/1, 2009 at 12:58

© 2022 - 2025 — McMap. All rights reserved.