diff --git a/development/versioning.md b/development/versioning.md
index d863640b..0ff31464 100644
--- a/development/versioning.md
+++ b/development/versioning.md
@@ -24,11 +24,11 @@ A moving branch may have names like `develop`, `17.0-develop` or even `1.2`. He
## Frozen versions
-A version of any artifact (like a Helm chart, docker, git repository etc.) is considered "frozen", or "tagged', or "pegged" if all the components, and source code inside that artifact is frozen -- there are no moving versions like "develop". Thus, a frozen version allows tracing to exact versions of code at the lower most level. Conversely, a frozen version artifact can be exactly recreated if required.
+A version of any artifact (like a Helm chart, docker, git repository etc.) is considered "frozen", or "tagged', or "pegged" if all the components, and source code inside that artifact is frozen -- there are no moving versions like "develop". Thus, a frozen version allows tracing to exact versions of code at the lower most level. Therefore, a frozen version artifact may be exactly recreated if required.
-A 3 digit version is deemed [frozen](versioning.md#frozen-versions) if it does not have any other suffixes like -`develop` or `-alpha` etc. Conversely, any version which is not 3 digit or has a suffix, cannot be considered a frozen version. The version may have parts that are moving. Here are some examples to illustrate the same:
+A 3 digit version is deemed frozen if it does not have any other suffixes like -`develop` or `-alpha` etc. Conversely, any version which is not 3 digit or has a suffix, cannot be considered a frozen version -- the version may have parts that are moving. Here are some examples to illustrate the same:
-
Artifact | Version | Interpretation |
---|
Git repository | v1.2.0 | This is Git tag (not branch) and is frozen as tags are generally not moved |
Git repository | 1.2 | A moving branch |
Git repository | 1.2.0 | A branch created only to tag a version |
Git repository | v.1.2.0 | Tag (frozen) version |
Odoo module | 17.0.1.2.0-develop | Moving version related to branch 1.2. |
Odoo module | 17.0.1.2.0 | Frozen version |
Docker | 1.2.0 | Frozen package |
Docker | 1.2 | Moving version |
Docker | 1.2-develop | Moving version |
Helm chart | 0.0.0-develop | Moving version - latest in develop branch |
Helm chart | 1.2.3 | Frozen package |
+Artifact | Version | Interpretation |
---|
Git repository | v1.2.0 | This is Git tag (not branch) and is frozen as tags are generally not moved |
Git repository | 1.2 | A moving branch |
Git repository | 1.2.0 | A branch created temporarily only to tag a version |
Odoo module | 17.0.1.2.0-develop | Moving version related to branch 1.2. |
Odoo module | 17.0.1.2.0 | Frozen version |
Docker | 1.2.0 | Frozen package |
Docker | 1.2 | Moving version |
Docker | 1.2-develop | Moving version |
Helm chart | 0.0.0-develop | Moving version - latest in develop branch |
Helm chart | 1.2.3 | Frozen package |