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
1
vote
2 answers

SVN: best practice for versioning you live server?

I want to track all changes on a Typo3 live server via SVN. This works well so far but since I've updated an extention with the build in extention manager, I'm getting a SVN error: svn: 'ext/realurl' is not a working copy directory This is because…
user1016934
  • 53
  • 1
  • 1
  • 5
1
vote
1 answer

Heroku app versioning like AppEngine

You know for AppEngine, I can access my old app versions by adding version name in front of my app url, e.g: http://version1.appname.appspot.com How do I do that with Heroku?
BPm
  • 2,924
  • 11
  • 33
  • 51
1
vote
1 answer

Stick a version number to SVN revision number

when its time to deploy a project to a customer or whatever, is there a way of putting the version of the software to that specific svn Revision History number? for instance revision 456 is the softwares Version 1.2.0.1 ? Thx.
1
vote
1 answer

How to track/record the versions of the entity changes

We want to implement a "versioning" feature in our Java project(JSF/EJB/JSF). Let me give an example: ----- | A | ----- 1/\1 / \ */ \* ----- ----- | B | | C | ----- ----- The…
John Wang
  • 4,562
  • 9
  • 37
  • 54
1
vote
2 answers

What's the best script PHP to index documents, perform full text search and implement versioning?

I need to index a long list of documents (mostly ms office formats, pdf) and perform full text search and support versioning. I read about lucene but it seems far to be a complete solution, does anyone know a commercial complete indexer?
Michele
  • 1,468
  • 3
  • 24
  • 54
1
vote
1 answer

How to upgrade version of codeigniter framework?

My current project has version 1.6.3 of codeigniter framework. Now there is new release of 2.1.0 version of codeigniter. There are many new libraries and helpers included in new version. So I want to upgrade codeigniter to new version to have more…
Somnath Muluk
  • 55,015
  • 38
  • 216
  • 226
1
vote
1 answer

How can I find out if user is using the latest version of application?

I want to remind the user that he is not using the latest release. How can I get the last version code of my application?
Eric JOYÉ
  • 1,077
  • 9
  • 10
1
vote
1 answer

How would you explain merges with ClearCase?

I'm a developer who has never needed to worry about the implementation of source control systems / branching / merging etc... I'm searching for book which explains these concepts but is aimed at clearcase users. From searching amazon - the book…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
1
vote
1 answer

App Store release using wrong Core Data Version

My released version appears to be using a old model version of Core Data, xxxDB 101j instead of xxxDB as defined in the VersionInfo.plist (package contents of xxx.xcarchive submitted to the app store). This has not been an issue on development…
RobCroll
  • 2,571
  • 1
  • 26
  • 36
1
vote
1 answer

How to manage a repository for bootstrap code?

I want to have a repository with the code base I will be using for most of my projects, but I'm not sure on how to deal with this. All I can think of is to just clone it when I start a new project, and then remove the .git or .hg folder (and create…
HappyDeveloper
  • 12,480
  • 22
  • 82
  • 117
1
vote
3 answers

Tracking File-level Versioning in builds using Visual Studio and .NET?

I want a tool or a technique to be able to answer the question "What version of file X was used to build Assembly abc.dll?" I recently moved to a .NET development group, and it seems like this question comes up all the time, in one form or another,…
Ogre Psalm33
  • 21,366
  • 16
  • 74
  • 92
1
vote
2 answers

Possibilities of implementing a git server

I am following this: A successful Git branching model tutorial to learn how to correctly set branches for my projects. Doubts of where to create the repositories and branches, which of the following is a good solution: Use my production server as a…
Alex
  • 7,538
  • 23
  • 84
  • 152
1
vote
1 answer

Should I pin gem "rails" to a version?

Most rails projects have a very specific version included in their gemfile, right after a rails new foo. For example gem 'rails', '3.1.3' Would it not be better to change this to allow dot-version and e.g. define rails as gem 'rails', '~>3.2'?…
berkes
  • 26,996
  • 27
  • 115
  • 206
1
vote
1 answer

wcf forward-compatibility using enums

I've read this post regarding enumaration changes between versions, but it didn't help me. I have the following wcf service: [ServiceContract] public interface IService1 { [OperationContract] MyEnum Foo(); } [DataContract] public enum…
Sean
  • 81
  • 1
  • 7
1
vote
2 answers

IIS7 URL Rewrite rule for service versioning scenario

To version a RESTful service, I would like to do the following with the URL Rewrite Module; Map https://server/service/ to server/service/v1/ if the Accept header (HTTP_ACCEPT?) is application/vnd.mycompany.service+xml For the next version of the…
larsw
  • 3,790
  • 2
  • 25
  • 37