Questions tagged [version]

Version defines an unique state of a computer software or a file.

Versions and version control systems are widely used in software industry to keep track of different versions of a piece of software.

Following processes and techniques are often used in computer software engineering to keep track of different versions:

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

At a fine-grained level, revision control is often used for keeping track of incrementally different versions of electronic information, whether or not this information is actually computer software.

One of the forms of revision control is a versioning file system. Such a system is any computer file system which allows a computer file to exist in several versions at the same time.

6717 questions
258
votes
24 answers

Flutter: upgrade the version code for play store

I have published an application on the play store with flutter, now I want to upload a new version of the application. I am trying to change the version code with: flutter build apk --build-name=1.0.2 --build-number=3 or changing the…
Pondikpa Tchabao
  • 3,285
  • 6
  • 17
  • 24
256
votes
16 answers

How can my iphone app detect its own version number?

I'm writing an iPhone app. It's already been published, but I would like to add a feature where its version number is displayed. I'd rather not have to do this manually with each version I release... Is there a way in objective-C to find out what…
cmos
252
votes
17 answers

How to display the app version in Angular?

How do I display the app version in Angular application? The version should be taken from package.json file. { "name": "angular-app", "version": "0.0.1", ... } In Angular 1.x, I have this html:

<%=version %>

In Angular, this is not…
Zbynek
  • 5,673
  • 6
  • 30
  • 52
251
votes
19 answers

How can I check for Python version in a program that uses new language features?

If I have a Python script that requires at least a particular version of Python, what is the correct way to fail gracefully when an earlier version of Python is used to launch the script? How do I get control early enough to issue an error…
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465
237
votes
11 answers

How can I check the version before installing a package using 'apt-get'?

I'm thinking to install hylafax+ version 5.5.4 which was released last month on my Debian PC. I checked dpkg -l | grep "hylafax" and found out that the current version is 5.5.3. Then I checked apt-cache search hylafax and saw the packages are…
Yasiru G
  • 6,886
  • 6
  • 23
  • 43
221
votes
17 answers

PowerShell script to return versions of .NET Framework on a machine?

What would a PowerShell script be to return versions of the .NET Framework on a machine? My first guess is something involving WMI. Is there something better? It should be a one-liner to return only the latest version for each installation of .NET…
MattUebel
  • 2,737
  • 4
  • 21
  • 22
219
votes
28 answers

Node - was compiled against a different Node.js version using NODE_MODULE_VERSION 51

I am running a node application on terminal. Have recently upgraded to node v8.5.0, but am getting this error: Error: The module '/tidee/tidee-au/packages/tidee-au-server/node_modules/bcrypt/lib/binding/bcrypt_lib.node' was compiled against a…
JoeTidee
  • 24,754
  • 25
  • 104
  • 149
208
votes
8 answers

Installing older version of R package

I am trying to use Rpy2 and ggplot2 but I get an error. After some searching for the error online, I found that the error occurs because there are changes in the ggplot2 package that are not yet reflected in Rpy2 (for example, see this post (Edit:…
hirolau
  • 13,451
  • 8
  • 35
  • 47
207
votes
8 answers

Maven check for updated dependencies in repository

Is there a Maven plugin that allows you to check if there are newer versions of dependencies available in the repository? Say, you are using dependency X with version 1.2. Now a new version of X is released with version 1.3. I'd like to know, based…
froethen
  • 2,083
  • 2
  • 13
  • 5
198
votes
7 answers

How to get build and version number of Flutter app

I am currently developing an application which is currently in beta mode. Due to this, I would like to show them what version they are on. For example, "v1.0b10 - iOS". So far, I have got this code: Text("Build: V1.0b10 - " + (Platform.isIOS ? "iOS"…
iProgram
  • 6,057
  • 9
  • 39
  • 80
181
votes
29 answers

What do the numbers in a version typically represent (i.e. v1.9.0.1)?

I've always assumed each number delineated by a period represented a single component of the software. If that's true, do they ever represent something different? How should a version number be structured to start assigning versions to the different…
BeachRunnerFred
  • 18,070
  • 35
  • 139
  • 238
173
votes
7 answers

Difference between Eclipse Europa, Helios, Galileo

What is the difference between versions of Eclipse (Europa, Helios, Galileo)? Which is the best for desktop application?
Ballon
  • 6,882
  • 18
  • 49
  • 63
170
votes
30 answers

Check if my app has a new version on AppStore

I would like to manually check if there are new updates for my app while the user is in it, and prompt him to download the new version. Can I do this by checking the version of my app in the app store - programatically?
user542584
  • 2,651
  • 2
  • 25
  • 29
169
votes
18 answers

How to do version numbers?

My company is building a product. It's going to be versioned by SVN. It's a webapp so basically there will never be a version out which doesn't have some features in them and thus could always be labeled as beta. But since it's going to be a…
Thomaschaaf
  • 17,847
  • 32
  • 94
  • 128
167
votes
8 answers

How to check SQL Server version

What are the possible ways to determine the deployed SQL Server version? I’ve tried to do it using the SQL Server software. I want to do it using a command line SQL statement.
Yameen Bashir
  • 1,687
  • 2
  • 11
  • 5