From 8f0ade8124628b81608cc18255f7379d7dcde5d2 Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Wed, 4 Dec 2019 15:02:18 +0000 Subject: [PATCH] COH has been updated --- coh.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/coh.md b/coh.md index 212cf98..347005a 100644 --- a/coh.md +++ b/coh.md @@ -38,6 +38,12 @@ I always try to live by my code of honor. A man is nothing without his honor. "A * Bugs before new features * Docs before new features +### Library design +* Major releases can contain backward incompatible changes. +* It's better to use a different code name instead of a major version number change + to indicate that there going to be backward incompatible changes. +* Minor releases shouldn't break the dependency versions. E.g: X(0.6.0) depends on Python(3.5.x), + X(0.7.0) should depends on the same version python ### New Feature Checklist * Is it easy to extend the feature ? * Is it scalable ? @@ -47,7 +53,6 @@ I always try to live by my code of honor. A man is nothing without his honor. "A * What about tests ? * Is it following the correct coding style ? - ### Resiliency Checklist * Things that might fail: