Suppose I have an application with version 1.2.3
.
If I refactor my application to remove deprecated calls while maintaining the same functionality and API as in version 1.2.3
, what version number should I assign to the new release according to Semantic Versioning (SemVer
) rules?
New contributor
Rafael is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Version 2.0.0.
Removing something, even something deprecated, is a breaking change.
1