Created
June 8, 2011 21:43
-
-
Save tsnow/1015488 to your computer and use it in GitHub Desktop.
Mapping RRV/SemVer to test structure for auto~versioning
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mapping RRV to Tests: | |
1. Patch releases (3.2.1) should only include bug fixes and internal implementation changes. | |
test/bugs/ can change | |
test/internal/ can change | |
2. Minor releases (3.2.0) can include bug fixes, internal changes, and new features, but no breaking changes. | |
test/feature_stories/ can be added to | |
3. Major releases (3.0.0) can include bug fixes, internal changes, new features, and breaking changes. | |
test/api/ can be modified |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment