You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -262,6 +262,20 @@ FROM (SELECT field1,
262
262
263
263
5. Everything not being a query of the form `CREATE ... TABLE / VIEW` or `SELECT ...` is left unchanged
264
264
265
+
## Versioning
266
+
267
+
We version our package via [semantic versioning](https://semver.org), i.e.,
268
+
269
+
* We use three digits separated by points x1.x2.x3, e.g. 0.5.1
270
+
* We increase x1 (the major version) if we introduce breaking changes
271
+
* Exception: Versions with 0 at the beginning (e.g. 0.5.1) mean that the package is not stable yet and therefore every new feature could be a breaking change
272
+
* We increase x2 (the minor version) if we introduce a new feature
273
+
* We increase x3 (the patch version) if we fix a bug
274
+
275
+
New documentation, refactoring / maintenance of code and admin tasks do not change the versions.
276
+
277
+
You can follow the changes introduced by each version in our [CHANGELOG](https://github.com/PabloRMira/sql_formatter/blob/master/CHANGELOG.md)
<p>We version our package via <ahref="https://semver.org">semantic versioning</a>, i.e.,</p>
464
+
<ul>
465
+
<li>We use three digits separated by points x1.x2.x3, e.g. 0.5.1</li>
466
+
<li>We increase x1 (the major version) if we introduce breaking changes<ul>
467
+
<li>Exception: Versions with 0 at the beginning (e.g. 0.5.1) mean that the package is not stable yet and therefore every new feature could be a breaking change</li>
468
+
</ul>
469
+
</li>
470
+
<li>We increase x2 (the minor version) if we introduce a new feature</li>
471
+
<li>We increase x3 (the patch version) if we fix a bug</li>
472
+
</ul>
473
+
<p>New documentation, refactoring / maintenance of code and admin tasks do not change the versions.</p>
474
+
<p>You can follow the changes introduced by each version in our <ahref="https://github.com/PabloRMira/sql_formatter/blob/master/CHANGELOG.md">CHANGELOG</a></p>
Copy file name to clipboardExpand all lines: nbs/index.ipynb
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -398,6 +398,30 @@
398
398
"5. Everything not being a query of the form `CREATE ... TABLE / VIEW` or `SELECT ...` is left unchanged"
399
399
]
400
400
},
401
+
{
402
+
"cell_type": "markdown",
403
+
"metadata": {},
404
+
"source": [
405
+
"## Versioning"
406
+
]
407
+
},
408
+
{
409
+
"cell_type": "markdown",
410
+
"metadata": {},
411
+
"source": [
412
+
"We version our package via [semantic versioning](https://semver.org), i.e., \n",
413
+
"\n",
414
+
"* We use three digits separated by points x1.x2.x3, e.g. 0.5.1\n",
415
+
"* We increase x1 (the major version) if we introduce breaking changes\n",
416
+
" * Exception: Versions with 0 at the beginning (e.g. 0.5.1) mean that the package is not stable yet and therefore every new feature could be a breaking change\n",
417
+
"* We increase x2 (the minor version) if we introduce a new feature\n",
418
+
"* We increase x3 (the patch version) if we fix a bug\n",
419
+
"\n",
420
+
"New documentation, refactoring / maintenance of code and admin tasks do not change the versions.\n",
421
+
"\n",
422
+
"You can follow the changes introduced by each version in our [CHANGELOG](https://github.com/PabloRMira/sql_formatter/blob/master/CHANGELOG.md)"
0 commit comments