diff --git a/HISTORY.rst b/HISTORY.rst index d535501a..5608de8b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -39,6 +39,7 @@ PlatformIO 3.0 * Do not overwrite project configuration variables when system environment variables are set * Handle dependencies when installing non-registry package/library (VCS, archive, local folder) + (`issue #913 `_) * Fixed package installing with VCS branch for Python 2.7.3 (`issue #885 `_) diff --git a/platformio/managers/lib.py b/platformio/managers/lib.py index 2b466c62..553f0803 100644 --- a/platformio/managers/lib.py +++ b/platformio/managers/lib.py @@ -37,7 +37,7 @@ class LibraryManager(BasePkgManager): @property def manifest_names(self): return [ - ".library.json", "library.properties", "library.json", + ".library.json", "library.json", "library.properties", "module.json" ]