-
Notifications
You must be signed in to change notification settings - Fork 179
mbed CLI 0.7.x fixes #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mbed CLI 0.7.x fixes #221
Conversation
…troducing a `--clean-files` #215 To ensure that this is not used by accident the full command is `mbed update --clean --clean-files` Also rename --force switch to --clean-deps for consistency, e..g `mbed update --clean --clean-deps`
@@ -35,7 +35,7 @@ | |||
|
|||
|
|||
# Application version | |||
ver = '0.7.13' | |||
ver = '0.7.17' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why version number jump to 0.7.17 instead of 0.8.0? what rules you use for these numbers? at least it doesnt follow semantic versioning..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No major functionality or behavior was introduced, no refactoring etc. Only fixes and cosmetics, e.g. mbed --version
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Application version
-ver = '0.7.13'
+ver = '0.7.17'No major functionality or behavior was introduced. Only fixes and cosmetics, e.g. mbed —v
Given this organizations history with semver (with yotta) it makes sense to version consistently across the
organization and stick with semver in other contexts.
Major functionality aside, if minor features (ie none bug fixes) are added the minor version should be stepped.
IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nothing was pushed to PyPI after 0.7.13. The changes between 0.7.13 and 0.7.17 are exactly 4 changesets which reflect the number of issues that were fixed, not the number of commits.
Fixes:
mbed compile -t GCC_ARM -m K64F --tests
should set the default toolchain and target #207mbed compile --tests
to point tombed test --compile
mbed --version
shows version instead of error mbed --version #222mbed update --clean
doesn't delete untracked files. Now it does with--clean-files
switchmbed update --clean
did not delete .pyc files causing error #215