From 5e69b1570ed96cd7bdb6b14c1d902dafdf7fcfc6 Mon Sep 17 00:00:00 2001 From: Nobuo Kihara Date: Thu, 16 Oct 2014 18:49:46 +0900 Subject: [PATCH] added more markdown tags to docs/internals/versions.md for better readability --- docs/internals/versions.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/internals/versions.md b/docs/internals/versions.md index fe21fd70df..0c56b8969a 100644 --- a/docs/internals/versions.md +++ b/docs/internals/versions.md @@ -4,17 +4,21 @@ Yii version numbering Releases -------- +``` A.B.C +``` -A = For Yii2 it's always 2. -B = Major version. Non-BC changes with upgrade instructions. -C = BC changes and additions. +- A = For Yii2 it's always 2. +- B = Major version. Non-BC changes with upgrade instructions. +- C = BC changes and additions. Release candidates ------------------ +``` A.B.C-rc A.B.C-rc2 +``` This is when we want to do a release candidate. RC number increments till we're getting a stable release with no critical bugs and backwards incompatibility reports. @@ -22,14 +26,18 @@ critical bugs and backwards incompatibility reports. Alphas and betas ---------------- +``` A.B.C-alpha A.B.C-alpha2 +``` Alphas are unstable versions where significant bugs may and probably do exist. API isn't fixed yet and may be changed significantly. `alpha2` etc. may or may not be released based on overall stability of code and API. +``` A.B.C-beta A.B.C-beta2 +``` Beta is more or less stable with less bugs and API instability than alphas. There still could be changes in API but there should be a significant reason for it.