Questions tagged [versioning]

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

Software versioning is the process of assigning either unique version names or unique version numbers to unique states of computer software. Within a given version number category (major, minor), these numbers are generally assigned in increasing order and correspond to new developments in the software.

The following are some popular versioning software used:

  1. Git
  2. Subversion (SVN)
  3. Microsoft TFS
3122 questions
2
votes
1 answer

Image versioning - Best approach

I am developing a site framework in php (codeigniter) and want to introduce image versioning on image uploads so that I can take advantage of image caching. The easiest approach would just be to md5 the image and use that as the file name but I…
SwiftD
  • 5,769
  • 6
  • 43
  • 67
2
votes
1 answer

Understanding Hibernate Version History and Compatibility of its modules with each Other

Is there any good link or documentation regarding Hibernate Version History. My Confusion starts at Hibernate 3.3 when modularisation was introduced. For e.g if i want to use hibernate-validator 3.x with hibernate 3.2.6ga (before 3.3 its was single…
harrybvp
  • 2,445
  • 2
  • 22
  • 30
2
votes
2 answers

upgrade ruby version without rvm

I just did apt-get install ruby.1.9.1, installing it successfully. Now when I do ruby -v, it's still 1.8.7. Why won't it use the newly installed version? I don't know why, but I can't find anything via google on how to manage ruby versions without…
rails_has_elegance
  • 1,590
  • 4
  • 21
  • 37
2
votes
0 answers

JAR file versions

I'm using Visual Studio 2008 for C# and Eclipse 20120216-1857 for Java 1.6.37 to build a web app. Each of my Java projects contain bin and src directories, along with .project, .classpath, and build.xml files. I would like to version each of these…
2
votes
1 answer

Versioning properties in Jackrabbit/JCR 2.0

I'm using Jackrabbit/JCR 2.0. Imagine the following scenario: I add a node, then I do a check-out on it, edit some properties and do check-in. Then I do it again. Next, I can see in version history that versions 1.0 and 1.1 are created. How can I…
Martin Spa
  • 1,494
  • 1
  • 24
  • 44
2
votes
2 answers

how to get the Version of a DLL?

I'm opening a DLL from system32 (shell32.dll ) and I want to receive it's version. How Can I do it? I started writing it , but just don't know how to continue : I also saw that there are functions like : GetFileVersionSize , is there a way to use…
user1386966
  • 3,302
  • 13
  • 43
  • 72
2
votes
1 answer

Win32 api for opening and getting data from resource files

I have a project that is compiling into a DLL , and a resource file that I added manually. I'm looking for Win32 API that can help me find resource files and get information and data from them (using C++). For example - to get the Company Name or…
user1386966
  • 3,302
  • 13
  • 43
  • 72
2
votes
1 answer

Java Web Start download the latest JRE?

In my JNLP file, I'm using the following to make sure Java 7 users will run my application under Java 6: It works, and will even prompt to install Java 6 if necessary. However,…
Fuhrmanator
  • 11,459
  • 6
  • 62
  • 111
2
votes
1 answer

Perforce - how to discard changes for an entire folder?

I have modified and edited some project files in a folder targeted at a windows 32 build and made the project build for a different target. I then copied that folder and renamed it, but I would like the files in the depo to not suffer any…
teodron
  • 1,410
  • 1
  • 20
  • 41
2
votes
1 answer

How to manage different versions of R on Mac?

I use R with RStudio on the Mac. In order to use different packages I need to use several versions of R. It seems that RSwitch is no longer available for download. How do I manage different versions of R in the easiest way on the Mac?
histelheim
  • 4,938
  • 6
  • 33
  • 63
2
votes
2 answers

How to design a version converter (Json.net) that handles a very old version to a new version without much code blot

My requirement is to create a version converter design that is efficient. Let us assume the following classes are evolved in each version. //Version 1 internal class PatientV1 { public string FullName { get; set; } public…
keyr
  • 990
  • 13
  • 27
2
votes
0 answers

API Versioning in Rails 2 project

I've got a project running using Rails 2.3.14 and Ruby 1.8.7. I'd like to implement a versioning system for our RESTful API similar to what is shown in http://railscasts.com/episodes/350-rest-api-versioning. I am finding some difficulties…
2
votes
1 answer

Versioning SOAP body vs entire service?

Trying to understand versioning with SOAP and web services. From what I have found it seems acceptable to do something like this with the URL: www.company.com/service/01-12-10/ and www.company.com/service/03-08-10/ and www.company.com/service/…
O.O
  • 11,077
  • 18
  • 94
  • 182
2
votes
0 answers

docrtine 2 versioning associations

I need to implement versioning for some entities. I have an entity "Map" which has a OneToMany association with "Spot" Entities. The "Map" and also "Spot" should be versionable. It should be possibler to show older versions of a "Map" with all the…
Sascha
  • 53
  • 6
2
votes
1 answer

Delete a specific commit knowing commit id

Lets say i have a repo (git version 1.7.1) that contains following commits A -> B -> C -> D ->E and my HEAD is on E. Now i want to delete C while keeping everything same like A -> B -> D -> E . Can you help me how to do it?
coder
  • 65
  • 2
  • 8