Questions tagged [version-numbering]

92 questions
1
vote
0 answers

Generating the DESCRIPTION of an R package at installation time

Say I have an R package on GitHub that I expect users to install with devtools::install_github. I'd like packageVersion or some element of packageDescription to reflect the specific commit that was installed. This answer describes how a Git commit…
Kodiologist
  • 2,984
  • 18
  • 33
1
vote
1 answer

Why hasn't Linux version number moved beyond 2.6?

Before 2.6 Linux moved up from 2.0 to 2.2 to 2.4 every few years. Why did it stop at 2.6? Is the version number ever going to go beyond 2.6?
Continuation
  • 12,722
  • 20
  • 82
  • 106
1
vote
3 answers

WQL/SCCM - Comparing version numbers correctly (less than...)

I'm having a problem with this part of a SCCM WQL query looking for "less than version 75.0.3770.80": ... where SMS_G_System_ADD_REMOVE_PROGRAMS.Version < "75.0.3770.80" If i'm not mistaken this is the good old problem seen before in other…
Rakha
  • 1,874
  • 3
  • 26
  • 60
1
vote
2 answers

Convert string to int and increment last digit only for build number in TFS

I am looking for a way to convert a string 1.2.0 to an int so that I could increment the last digit. Final result should be 1.2.1 $values = '1.2.0' $after = $values.split('.'); $result = [int]$after; # TODO increment the last decimal value,…
1
vote
0 answers

Not getting 'gulp-version-number' to work

First time looking at gulp and having the project land on my lap, and of-course not getting it to work. I need to get a version number on the files and not getting 'gulp-version-number' to work - the old code does, it just "jumps over" the…
1
vote
1 answer

managing different rails 2.3.x versions in development/production with bundler

I'm trying to configure Bundler to work with different Rails 2.3.x versions using the guide in the bunder website, so I could test a version in dev environment before its used in production. I have the following Gemfile: # some common gems group…
sa125
  • 28,121
  • 38
  • 111
  • 153
1
vote
1 answer

Upload to pypitest with twine - fails on repeated tests

twine upload dist/* -r pypitest This command results in the below error when I repeat an upload with the same version number. I thought that pypitest (e.i. https://test.pypi.org/legacy/) was available exactly to support repeated uploads "until I get…
1
vote
5 answers

Auto-increment version revision number with wildcard

I'm trying to raise the revision number with each build. I've therefore tried to the project assembly information -> Assembly Version and File Version to 1 0 0 * 1 0 0 * However, VS2017 tells me "Assembly file version: In this field, wildcards…
tmighty
  • 10,734
  • 21
  • 104
  • 218
1
vote
1 answer

C# .NET app's product version not updating in Control Panel -> Program -> Uninstall a program

I'm having trouble updating a C# application's product number. I updated the [assembly: AssemblyVersion("0.0.4.4")] and [assembly: AssemblyFileVersion("0.0.4.4")] in AssemblyInfo.cs. Then build a new MSI setup file. Then I proceed with uninstalling…
Tien Phan
  • 55
  • 9
1
vote
1 answer

Seeking name (and library code) for a numbering scheme that contains multiple decimals, e.g. 10.5.89.34.11? Dewey? Tree?

---+ BRIEF What do you call a numbering system that contains multiple decimals? And, can you point me to any standard libraries that manipulate such multiple-decimal-strings? E.g. 1 1.1 ... 4.1 4.1.1 ... 4.1.77 ... 167.966.451.8787.0.1771.88 ... I…
Krazy Glew
  • 7,210
  • 2
  • 49
  • 62
1
vote
1 answer

How to use the SVN revision in Jenkins to set the c# assembly version

Using Jenkins, I'd like to set the version number of a c# assembly to something like 1.0.${SVN_REVISION}.${BUILD_NUMBER}. Unfortunately the Change Assembly Version plugin doesn't see the SVN revision number. Does anyone know a way to get this…
Andy P
  • 11
  • 2
1
vote
1 answer

Assign Version Number for 10 SubProjects from common file

Our Application is in the windows .Net with c# We had 10-15 SubProjects which belong to one single project and we want to assign the Version Number for each of them(each dll which belongs to the Specific Sub- Project) through the common .cs file. So…
jay
  • 27
  • 6
1
vote
2 answers

Why is `NSAppKitVersionNumber10_10` not included in `NSApplication.h` for OS X 10.10 Yosemite?

It has been common advice to use the NSAppKitVersionNumber to check for new features provided by Cocoa frameworks at runtime: https://developer.apple.com/library/mac/releasenotes/AppKit/RN-AppKit/ One typical use of this is to floor() the value,…
pkamb
  • 33,281
  • 23
  • 160
  • 191
1
vote
1 answer

Convert String with Multiple Decimals to Interger/Number VB.NET

I'm trying to figure out how to compare two strings (Numbers and Multiple Decimals) to see what one is greater numerically. One string is version information read from the registry being compared against a string value read from a XML file. This…
JustinTime
  • 11
  • 6
1
vote
1 answer

Alter column bytea to text in various versions of Postgres with plpgsql

I have problem how to convert column using plpgsql (bytea -> text). I wrote function which works on some databases and doesn't for others. I don't know how to fix it. Using databases from 8.0 - 9.3; this error is for 8.1.19. I received: ERROR: …
Bartosz Kowalczyk
  • 1,479
  • 2
  • 18
  • 34