From 2fe4b7c0ec7c8fa086ee3dceac2812dd8f3f930a Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 8 Mar 2017 17:33:25 +0200 Subject: [PATCH] Change manifests order for Library Manager --- HISTORY.rst | 1 + platformio/managers/lib.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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" ]