From dc923769d08c799388a8f75e5d2970f72453ebbd Mon Sep 17 00:00:00 2001 From: Gordon Date: Wed, 22 Sep 2021 11:10:38 +0200 Subject: [PATCH] docs(doc): update versioning policy --- docusaurus/docs/Flutter/basics/versioning_policy.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docusaurus/docs/Flutter/basics/versioning_policy.mdx b/docusaurus/docs/Flutter/basics/versioning_policy.mdx index 26ab9541..48f25d66 100644 --- a/docusaurus/docs/Flutter/basics/versioning_policy.mdx +++ b/docusaurus/docs/Flutter/basics/versioning_policy.mdx @@ -7,8 +7,7 @@ title: Versioning Policy All of the Stream Chat packages follow [semantic versioning (semver)](https://semver.org/). That means that with a version number x.y.z (major.minor.patch): - -- When releasing critical bug fixes, we make a patch release by changing the z number (ex: 3.6.2 to 3.6.3). +- When releasing bug fixes (backwards compatible), we make a patch release by changing the z number (ex: 3.6.2 to 3.6.3). A bug fix is defined as an internal change that fixes incorrect behavior. - When releasing new features or non-critical fixes, we make a minor release by changing the y number (ex: 3.6.2 to 3.7.0). - When releasing breaking changes (backward incompatible), we make a major release by changing the x number (ex: 3.6.2 to 4.0.0).