treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Version Control?

  • I've been looking around and I can't seem to find a straight answer to this.

    How do I know what version my app is?

    I'm busy creating a jQuery plugin and I obviously want to keep track of when I do bug fixes, etc. How do I know it goes from 1.2 to 1.3? or 1.2.4 to 1.2.5?

    My guess would be the former is a feature change/addition and the latter is a fix.
  • That's pretty much how I do it. Anything in beta that hasn't been released yet starts with 0.1b for me.

    The first major release is 1.0. Minor bug fixes 1.0.1. A substantial update, 1.1. A major release, 2.0.
  • Thanks Doc :)