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
411
votes
10 answers

Which version of MVC am I using?

I can't find it for some reason, feeling a little dumb. How do I know? I'm using .net 4 with VS2010.
EKet
  • 7,272
  • 15
  • 52
  • 72
385
votes
19 answers

How to find which version of TensorFlow is installed in my system?

I need to find which version of TensorFlow I have installed. I'm using Ubuntu 16.04 Long Term Support.
Hans K
  • 4,153
  • 2
  • 13
  • 19
373
votes
4 answers

What does Bump Version stand for?

I saw this comment in git many times. What does it mean actually?
user80805
  • 6,088
  • 5
  • 28
  • 31
369
votes
17 answers

How do I check which version of NumPy I'm using?

How can I check which version of NumPy I'm using?
larus
  • 4,359
  • 4
  • 21
  • 13
355
votes
21 answers

Which version of C# am I using

I want to find out which version of C# I'm using. If I would be using python I would do something like python -V from the command line, or type: import sys print sys.version In PHP I would do something like this: phpinfo(); in java: java…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
348
votes
13 answers

Upgrade Python in a virtual environment

Is there a way to upgrade the version of Python used in a virtual environment (e.g. if a bugfix release comes out)? I could pip freeze --local > requirements.txt, then remove the directory and pip install -r requirements.txt, but this requires a lot…
Simon Walker
  • 5,523
  • 6
  • 30
  • 32
342
votes
34 answers

How can you detect the version of a browser?

I've been searching around for code that would let me detect if the user visiting the website has Firefox 3 or 4. All I have found is code to detect the type of browser but not the version. How can I detect the version of a browser like this?
odle
  • 5,172
  • 8
  • 29
  • 33
335
votes
24 answers

How do I find the installed .NET versions?

How do I find out which version of .NET is installed? I'm looking for something as simple as java -version that I can type at the command prompt and that tells me the current version(s) installed. I better add that Visual Studio may not be installed…
sepang
  • 4,640
  • 4
  • 23
  • 23
330
votes
16 answers

Retrieve version from maven pom.xml in code

What is the simplest way to retrieve version number from maven's pom.xml in code, i.e., programatically?
Michael
  • 4,635
  • 7
  • 25
  • 33
328
votes
18 answers

Version of Apache installed on a Debian machine

How can I check which version of Apache is installed on a Debian machine? Is there a command for doing this?
pindiwala
  • 3,657
  • 4
  • 21
  • 14
321
votes
7 answers

Which TensorFlow and CUDA version combinations are compatible?

I have noticed that some newer TensorFlow versions are incompatible with older CUDA and cuDNN versions. Does an overview of the compatible versions or even a list of officially tested combinations exist? I can't find it in the TensorFlow…
whiletrue
  • 10,500
  • 6
  • 27
  • 47
291
votes
13 answers

versionCode vs versionName in Android Manifest

I had my app in the android market with version code = 2 and version name = 1.1 However, while updating it today, I changed the version code = 3 in the manifest but by mistake changed my version name to 1.0.1 and uploaded the apk to the market. Now,…
user838522
  • 3,821
  • 3
  • 23
  • 24
281
votes
14 answers

How to check version of a CocoaPods framework

I have updated Flurry via CocoaPods, but how can I check if Flurry was updated? I mean the terminal shown me that everything is ok: Installing FlurrySDK (4.2.3) Generating Pods project Integrating client project but I am not sure that it has been…
Matrosov Oleksandr
  • 25,505
  • 44
  • 151
  • 277
276
votes
11 answers

How to check if Gradle dependency has new version?

In Android Studio when I use a + in the version number like: com.android.support:recyclerview-v7:21.+ I get a "Avoid using + in version numbers" warning. But when I use a specific version number I can't always use the latest version. I have a lot of…
osrl
  • 8,168
  • 8
  • 36
  • 57
268
votes
7 answers

Check Redis server version

how to check Redis server version? I've found in Redis site this command: $ redis-server and that should give me (according to the site): [28550] 01 Aug 19:29:28 # Warning: no config file specified, using the default config. In order to specify a…
Aviram Netanel
  • 12,633
  • 9
  • 45
  • 69