Gem Versioning Rules - michaeltelford/wgit GitHub Wiki
The wgit gem follows these semantic versioning rules:
- The version format is
MAJOR.MINOR.PATCHe.g.0.1.0. - Since the gem hasn't reached
v1.0.0yet, slightly different semantic versioning rules apply. - The
PATCHrepresents non breaking changes while theMINORrepresents breaking changes e.g. updating from version0.1.0to0.2.0will likely introduce breaking changes necessitating updates to your codebase. - To determine what changes are needed, consult the
CHANGELOG.md. If you need help, raise an issue. - Once
wgit v1.0.0is released, normal semantic versioning rules will apply e.g. only aMAJORversion change should introduce breaking changes.
The above rules are standard semantic versioning. To conclude, because MAJOR is < 1, you should expect breaking changes on any MINOR update, but not PATCH updates. All changes are recorded in the CHANGELOG - consult it before upgrading your version of Wgit.