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

Python C API version mismatch for module

cpp-module code: #include #include void Hello() { std::cout << "string: " << PYTHON_API_STRING << "\n"; std::cout << "int: " << PYTHON_API_VERSION << "\n"; } BOOST_PYTHON_MODULE(hello) { namespace py =…
user694989
  • 75
  • 6
3
votes
2 answers

Travis CI Ruby Version conflict

I'm currently trying to use TravisCI properly for my rails app but I'm a bit stuck with the problem I'm facing. In my .travis.yml I've got this : language: ruby before_install: - gem install bundler rvm: - 2.0.0 env: - DB=sqlite - DB=mysql …
user2462805
  • 1,049
  • 3
  • 11
  • 26
3
votes
1 answer

no matching function for call to 'lower_bound' with newer gcc

I'm having some trouble compiling code that uses std::lower_bound on systems with newer versions of gcc. From my tests, 4.1 works, but 4.6 fails. Here is the relevant code snippet: template
user788171
  • 16,753
  • 40
  • 98
  • 125
3
votes
2 answers

Versioning software without having to edit lots of config files

We have a project that uses a couple of assemblies. Is there an easy way of handling the version of all those assemblies at once? We have a version like major.minor.patch.revision Most of the times on a release, just the minor version gets a…
Mare Infinitus
  • 8,024
  • 8
  • 64
  • 113
3
votes
3 answers

R submit to CRAN: which R version to build package?

I want to submit a package to CRAN. In the CRAN repository policy it states that "Packages for which R CMD check gives an ‘ERROR’ when a new R x.y.0 version is released will be archived". It also says "Please ensure that R CMD check --as-cran has…
user1981275
  • 13,002
  • 8
  • 72
  • 101
3
votes
0 answers

Executable for iOS simulator

I'm now working on a project with a drawer, and was asking is there is a way to send him a sort of executable of an app, so he could launch it from his iOS simulator and not pass in xcode interface ? He would not have access to the source code, but…
user2057209
  • 345
  • 1
  • 6
  • 19
3
votes
2 answers

Is there any version control in mysql?

It is possible to use a version control system with mysql databases? Or, is there a version control system already implemented? I want to say e.g.: SELECT foo FROM bar WHERE version = X Whereeby version is a mysql internal colum with last update…
Alexander G.
  • 333
  • 1
  • 4
  • 15
3
votes
4 answers

PHP - How to avoid Parse errors on older servers when using new functions

When I use an anonymous function ( but see also note below ) like : $f = function() use ($out) { echo $out; }; It produces an parse error on servers where PHP is older than 5.3.0. My software needs to be compatible with…
Obmerk Kronen
  • 15,619
  • 16
  • 66
  • 105
3
votes
1 answer

Rvm current and ruby-v not matching, $PATH errors?

I'm working on an RoR app, and I do not have sudo access to the server (CloudLinux Server release 6.3). The server uses cPanel 11.36 which does not support Rails 3.x, so the admin used Passenger to set up Rails for me. However, system Ruby was still…
eckc
  • 488
  • 6
  • 13
3
votes
3 answers

Link POM version and application version

I have two versions in my projects. The version in my POM.xml which is used when the project is packaged, etc. The version I have put in a constant in my code so I can use it during runtime when I log, etc. These should of course be the same, but…
Svish
  • 152,914
  • 173
  • 462
  • 620
3
votes
1 answer

Z3 -smt2 -in: Get Z3 version

Can I get the version of Z3 after starting it with the options -smt2 -in? Something like (get-z3-version) ; Z3 4.3.2 x64 // Desired reply
Malte Schwerhoff
  • 12,684
  • 4
  • 41
  • 71
3
votes
1 answer

Mantis - Add version field

Is it possible to have a version number for each defect/issue raised in Mantis and track its value during the lifetime of the defect? e.g v0.1 - Issue reported v0.2 - Issue assigned v0.5 - Issue resolved v0.6 - Issue closed I have never used…
Adrian
  • 6,013
  • 10
  • 47
  • 68
3
votes
1 answer

Xcode cannot detect device

I'm using xcode 4.6. After I upgraded iPad from iOS 5.1 to 6.1, Xcode does not find device in schema. Any solutions?
user1047504
  • 578
  • 7
  • 14
3
votes
4 answers

Javac version 1.7 not able to build for target 1.7

I am trying to compile Java code, with Sun Java JDK 1.7.0_17, on a Linux Mint system, but I'm getting this problem. $ javac -version -target 1.7 javac 1.7.0_17 javac: invalid target release: 1.7 -target 1.6 doesn't work either. Target 1.5 works,…
Serge Ivanoff
  • 184
  • 1
  • 5
3
votes
1 answer

How to develop for SQL Server 2008 using 2012?

When I use MSBuild 4 I can target .NET Framework 3.5 and older versions, and all features available only on the version 4 will not be available on that project. I would like to do a similar thing in SQL Server 2012. Can I configure a database in it…
1 2 3
99
100