Change default LDF Mode from “chain+” to “chain”

This commit is contained in:
Ivan Kravets
2016-12-07 23:49:38 +02:00
parent 0c04d4a435
commit c09649c996
4 changed files with 9 additions and 3 deletions

View File

@ -4,6 +4,12 @@ Release Notes
PlatformIO 3.0
--------------
3.2.1 (2016-12-07)
~~~~~~~~~~~~~~~~~~
* Changed default `LDF Mode <http://docs.platformio.org/en/latest/librarymanager/ldf.html#ldf-mode>`__
from ``chain+`` to ``chain``
3.2.0 (2016-12-07)
~~~~~~~~~~~~~~~~~~

2
docs

Submodule docs updated: 3c9020db70...fad663db0c

View File

@ -14,7 +14,7 @@
import sys
VERSION = (3, 2, 0)
VERSION = (3, 2, 1)
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -80,7 +80,7 @@ class LibBuilderFactory(object):
class LibBuilderBase(object):
LDF_MODES = ["off", "chain", "deep", "chain+", "deep+"]
LDF_MODE_DEFAULT = "chain+"
LDF_MODE_DEFAULT = "chain"
CLASSIC_SCANNER = SCons.Scanner.C.CScanner()
ADVANCED_SCANNER = SCons.Scanner.C.CScanner(advanced=True)