This repository was archived by the owner on Jan 15, 2021. It is now read-only.
Releases: ARMmbed/yotta
Releases · ARMmbed/yotta
0.12.0 - <your module name here>
New Things
- YOTTA_MODULE_NAME definition now available to CMake and the preprocessor, handy for debug logging and many other things.
- Targets can now define "cmakeIncludes", cmake files which will be included in the build description for every module. This allows a deeper level of customisation for build targets, including applying the flags necessary to produce code coverage info. It should make it possible to remove some of the other special-case handling for post-processing build products, too.
Fixed Things
- Various fixes to Eclipse project generation (Thanks @BrunoPires on the forums for reporting problems!
- Fixed various crashes that could occur in the
yotta licenses
,yotta link
, andyotta outdated
subcommands (thanks @bogdanm, @0xc0170 and @markus-becker-tridonic-com for reporting!) - Fix an issue handling the YOTTA_USER_SETTINGS_DIR environment variable (Thanks @markus-becker-tridonic-com for reporting!)
0.11.0 - Colourful Config
New Features and Significant Fixes
- display information about where config values came from in the output of
yotta config
(useyotta --plain config
to disable) - support overriding config on the commandline (see docs for details)
- Fix various issues with the --cmake-generator / -G parameter to
yotta build
: now Eclipse project files should include the source for the module being built. You can also use this to generate project files for Sublime text, Codeblocks, and others.
Behind the Scenes
- The wire-format for JWTs used by yotta to authenticate against the registry has changed (it now conforms to the standard). This change should have no visible effects, as the registry accepts both new and old formats. (Thanks @headlessme!)
- Improved the way that command line options are shared between subcommands, making it easier to re-use them.
- Bump the version of the argcomplete dependency (thanks @kylemanna!)
0.10.1 - minor fixes
0.10.0 - Unlink targets and unlink globally.
- add
yotta unlink-target
subcommand to remove a linked target - new yotta
unlink
andunlink-target
support for unlinking globally linked modules/targets - improved validation for
yotta link
- bugfixes to the cache implementation
- fix linking failure of application tests if the application contains no source
- various documentation improvements (thanks @Patater!)
0.9.4 - bugfixes
- handle a breaking change in PyGithub 1.26 which caused pulling from branches on github to fail (thanks @markus-becker-tridonic-com!)
- fix $program path expansion in test commands to use the absolute path (allows tests to run natively on windwows: thanks @noahp!)
- fix setting of yotta settings by environment variables under python 3 (thanks @markus-becker-tridonic-com!)
- experimental support for displaying the origin of modules in yotta list (included in
-a
flag, or new-i
flag).
0.9.3 - bugfixes
- resolve links when first loading modules to minimise path lengths (fixes cases where linked modules could make projects unbuildable on windows, including using the mbed OS windows tarball release)
- warn if an executable includes nothing to build
0.9.2 - bugfixes
- handle rate-limit-exceeded errors from Github (require the user to authenticate to increase the rate limit)
- don't try to handle WindowsError on non-windows platforms
- forward the mbed user ID to the registry if present in the environment
0.9.1 - bugfixes and usability improvements
- discourage publishing of executable applications to the registry, make applications private by default
- correctly inherit scripts from base target descriptions
- catch all errors when trying to get VCS build info, and make them non-fatal
- support ninja being called ninja-build (as it is on Fedora)
- fix cases where logout command would not remove all credentials
- add uncaught exception handler that displays the yotta version at the top of the backtrace
0.9.0 - search, don't sort
- more verbose and informative
yotta search
command output - implement
yotta update <dependencyname>
- allow + in target names
- new yotta cheatsheet available at http://yottadocs.mbed.com/reference/cheatsheet.html (thanks @BlackstoneEngineering!)
- ensure that .cmake files are included even if the source directory is empty
0.8.5 - fix irritating things
Usability improvements, including:
- streamlined yotta init: yotta init will no longer create descriptions that result in warnings, and will ask a shorter set of questions for executables
- download the target description when setting it with the
yotta target
subcommand in an existing module - fix various cases where user-error resulted in exceptions
- PyPI-specific readme, with the correct syntax
And various other bugfixes and improvements.