Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.

Releases: ARMmbed/yotta

0.3.1 – unpublish

23 Apr 11:41
Compare
Choose a tag to compare
  • add yotta unpublish command, which allows unpublishing of recently published modules
  • fix case-sensitivity bug in test detection (thanks @kuggenhoffen!)
  • improve iOS framework resource support (@headlessme)
  • bugfixes related to private registry support

0.3.0 - improved support for testing

20 Apr 11:18
Compare
Choose a tag to compare
  • add guide to testing with yotta
  • add testDependencies support in module.json
  • groundwork for multiple yotta registry support
  • various other bugfixes and improvements

0.2.5 Bugfixes

07 Apr 12:34
Compare
Choose a tag to compare
  • remove incorrect import of pwd on windows

0.2.4 Scripts

07 Apr 10:58
Compare
Choose a tag to compare
  • add yotta test subcommand
  • default build behaviour is now to build only the current module's tests
  • support building named
  • use the new scripts section in module.json and target.json files to implement yotta debug
  • add experimental testReporter script that modules can define to process the output of their tests and determine pass/fail
  • drop root privileges before building, testing, or debugging, and improve the method used to drop privileges.

0.2.3 - Friendly Is Good

27 Mar 19:01
Compare
Choose a tag to compare
  • windows installation script get_yotta.py (thanks @BlackstoneEngineering!)
  • many documentation tweaks to make installation instructions clearer and less likely to cause problems
  • yotta debug is substantially more forgiving about the paths it accepts
  • return to using /usr/local/yotta_* directories for linking on Linux/Mac

0.2.2 - Under the hood improvements

24 Mar 15:34
Compare
Choose a tag to compare
  • PyCrypto has been replaced with cryptography. This removes an installation step on windows.
  • documentation updates

0.2.1 Fix https login

23 Mar 15:00
Compare
Choose a tag to compare
  • match the registry's expected audience in https bearer tokens.

Be more friendly on windows

22 Mar 17:28
Compare
Choose a tag to compare
  • don't try to create the linking folder until it's needed
  • change the default system location for linking and settings to the python standard prefix (thanks @AlessandroA!)
  • ensure the user settings file cannot be read by other users
  • use https to communicate with the yotta registry
  • other bug fixes and improvements

v0.1.0 - search, per-directory settings

12 Mar 15:43
Compare
Choose a tag to compare
  • New yotta search subcommand to search for open-source modules and targets in the registry.
  • New yotta licenses subcommand to list the licenses of dependencies.
  • .json files are now used to save configuration.
    • your old configuration files will be ignored, so you may have to re-login after updating to this release
  • Save the target per-directory (in .yotta.json). Use yotta target <targetname> -g for the old behaviour.
  • Installation instructions for Fedora (Thanks @meriac!)
  • Respect the YOTTA_PREFIX environment variable when linking.
  • Support private in description files, to prevent accidental publication.
  • Build optimised builds by default, (use yotta build -d to build non-optimised).
  • Don't print unicode characters on windows.
  • Various other bug fixes and improvements.

This is a minor release because of breaking changes in the way settings are stored. The new format is much more flexible, and will allow more complex settings to be stored in the future without breaking compatibility.

v0.0.43 - Support Existing Build Systems

03 Feb 11:54
Compare
Choose a tag to compare
  • add yotta clean subcommand
  • support using existing top-level CMakeLists.txt files. This allows external modules with existing CMake build systems to be integrated easily.
  • fix yotta logout (Thanks Steve!)
  • support including .cmake files in generated build files (Thanks Rob!)
  • additional improved error messages for invalid json files
  • various other minor bug-fixes and improvements