Which part of the semantic versioning number (e.g. 1.2.3) is incremented for backwards-compatible bug fixes?
- Major version
- Minor version
- Patch version
- Build version
In SemVer, the 'patch' version is incremented for backwards-compatible bug fixes. This is done to indicate that changes made in this version are intended to address bugs without introducing breaking changes or new features.
Loading...
Related Quiz
- What is the purpose of the res.send() method in Express?
- When implementing indexing, what factors should be considered to mitigate the impact on database write performance?
- The method '______' is used to read data from a readable stream in Node.js.
- You are tasked with iterating over an array and modifying each element. Which loop structure would be the most suitable, considering the modern ECMAScript standards and why?
- How can the async/await syntax be used with error handling mechanisms, like try/catch, to handle asynchronous errors?