Questions tagged [version-numbering]
92 questions
1
vote
1 answer
Set iOS app version numbers to an integer representing the current date-time in UTC
I want both the version numbers (CFBundleVersion and CFBundleShortVersionString) in Xcode 5 to be automatically set to the current date-time in UTC time zone every time I do a build.
For example, 201405041942 means May 4, 2014 at 7:42 PM UTC.

Basil Bourque
- 303,325
- 100
- 852
- 1,154
1
vote
1 answer
VS2012 - Sync project properties and ClickOnce Build number
There is a build / version number automatically increasing with Publish for ClickOnce applications. This version number is different from the assembly version in the project properties (which in turn is automatically displayed in a generated WPF…

Horst Walter
- 13,663
- 32
- 126
- 228
1
vote
1 answer
Version and Build Information Error Xcode 4
I'm using Xcode 4.3 and I have followed this user's steps to create the script:
Version vs build in XCode
For whatever reason it does not look like I can leave a comment there. As the answer area in StackOverlow is not a forum/discussion I'm a bit…

Demasterpl
- 2,103
- 5
- 24
- 32
0
votes
1 answer
How to auto-populate the app version number in plist? (iPhone/iPad)
I have a plist that I want to auto-populate the version number of the app in. Is this possible? If so please can someone tell me how?
user843337
0
votes
1 answer
What is the best versioning way by a project
It is very confusing with versioning. I saw lots of versioning samples. Some of them contains even subversion information. Many of them looks ok.
0.5
0.1.0
0.0.1.0
5.5.5.2_R139
...
What is the best practise/best way for software-versioning?

Kayser
- 6,544
- 19
- 53
- 86
0
votes
1 answer
Bash script is not maching regex
I truly don't understand what I'm missing here.
I have a very basic script that need to check if text contains only number (more specific a semantic version for an app), then do some stuff.
The text.txt is something like this:
appVersion: 2.0.1
and…

Car_mine
- 71
- 1
- 1
- 7
0
votes
2 answers
Bash comparison check to accept values only with format 0.1
I have this snippet:
if [[ $1 =~ ^[+-]?[0-9]+\.?[0-9]*$ ]]; then
echo 'version is good'
exit 0
else
exit 1
fi
The problem is that, the snippet $1 =~ ^[+-]?[0-9]+\.?[0-9]*$ should only validate versions formatted as…

PythonicExperience
- 65
- 5
0
votes
1 answer
Adding sequential numbering to the beginning of file name using Powershell
I have a series of PDF files on my computer that I am trying to rename them using Powershell by adding a sequential number starting at 1000 to the beginning of, preceded by the letter "B".
Current file…

Runwithforks
- 17
- 5
0
votes
1 answer
Updating the app’s version number in flutter
I'm trying to deploy the flutter app, and now I'm trying to update the app's version number. Currently, it is "version: 1.0.0+2" but I just go with 1.0.0+3 for this time?
user13433173
0
votes
1 answer
Query Request: EC2 Version
In StartInstances - Amazon Elastic Compute Cloud Amazon describes how to make a request to Start Instances of EC2 service.
To write the parameters of request with a Signature Version 4, I followed Common Query Parameters - Amazon Elastic Compute…
0
votes
3 answers
In software projects there are version numbers how do I do that for my Java project at Eclipse in automatic way?
In software projects there are version numbers how do I do that for my Java project at Eclipse in automatic way ?
I'm using Subclipse will it help me set the application version number ?

Ismail Marmoush
- 13,140
- 25
- 80
- 114
0
votes
1 answer
using versionNumber plugin in Jenkins
Context:
We build our maven apps in which version number is injected by a build.properties file. Problem with this approach is that for every release, version number needs to be bumped manually.
Browsing online to fix this problem, i bumped into…

NoobEditor
- 15,563
- 19
- 81
- 112
0
votes
1 answer
Repeated numbering for new commands for Theorem, Corollary and Remark
I have the following code in…

Marco Armenta
- 119
- 4
0
votes
1 answer
Unable to resolve path to module './package.json' in React native application
I am trying to get application version in my react native app.
To get app version, I have written following code.
import { version } from './package.json';
console.log(version.appVersion);
But, It's throwing error like following
[eslint]…

Anilkumar iOS - ReactNative
- 3,543
- 9
- 54
- 109
0
votes
1 answer
How to get the library module's version from inside the module's code at runtime
Having a Android library module, its version is defined in the build.gradle
group = 'com.sample.data'
version = 1.0.1
project.ext.artifactId = 'data_module'
apply plugin: 'com.android.library'
Inside its code when do log or reporting the crash it…

lannyf
- 9,865
- 12
- 70
- 152