Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Version numbering basics? [closed]

Tags:

Suppose I have a web application with some basic functions. I want to market it. So I would like to assign a version number - something like 0.0.1. What I want to know is are there any constraints that should apply to that numbering system?

Hope you understood my question, thanks in advance.

like image 917
coderex Avatar asked Dec 11 '09 17:12

coderex


People also ask

How do versioning numbers work?

The first number in a version is a Major release, the second is a Minor release, and the third is a Patch release. The Major release is when the library or software includes incompatible updates.


1 Answers

Most places use something like this:

Major Release.Minor Release.Hot Fix.Build

Your version numbers would look like 1.5.0.15, etc.

like image 200
AaronS Avatar answered Oct 06 '22 01:10

AaronS