[go-nuts] Re: semantic versioning & Deprecated function

2020-10-09 Thread Jérôme LAFORGE
Thank you all for your help. Le samedi 10 octobre 2020 à 07:13:07 UTC+2, peterGo a écrit : > Jérôme, > > Semantic Versioning Specification (SemVer) > https://semver.org/#semantic-versioning-specification-semver > > 7. Minor version Y (x.Y.z | x > 0) ... MUST be incremented if any public > API fu

[go-nuts] Re: semantic versioning & Deprecated function

2020-10-09 Thread peterGo
Jérôme, Semantic Versioning Specification (SemVer) https://semver.org/#semantic-versioning-specification-semver 7. Minor version Y (x.Y.z | x > 0) ... MUST be incremented if any public API functionality is marked as deprecated. https://semver.org/#spec-item-7 Peter On Friday, October 9, 2020

[go-nuts] Re: semantic versioning & Deprecated function

2020-10-09 Thread peterGo
Jérôme, Semantic Versioning 2.0.0 https://semver.org/#semantic-versioning-200 How should I handle deprecating functionality? https://semver.org/#how-should-i-handle-deprecating-functionality Deprecating existing functionality is a normal part of software development and is often required to mak

[go-nuts] Re: semantic versioning & Deprecated function

2020-10-09 Thread David Skinner
https://semver.org/ It is MAJOR.MINOR.PATCH If you fix a bug, increment PATCH If add a feature, increment MINOR If you deprecate a feature, increment MAJOR. unless MAJOR is 0 then you increment MINOR. On Friday, October 9, 2020 at 1:40:58 PM UTC-5 jerome@gmail.com wrote: > Hello Gophers, > F