From c09649c996600377ac8a404ffac32f9a59167bb1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 7 Dec 2016 23:49:38 +0200 Subject: [PATCH] =?UTF-8?q?Change=20default=20LDF=20Mode=20from=20?= =?UTF-8?q?=E2=80=9Cchain+=E2=80=9D=20to=20=E2=80=9Cchain=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- HISTORY.rst | 6 ++++++ docs | 2 +- platformio/__init__.py | 2 +- platformio/builder/tools/piolib.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 93aa775e..4c504320 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,12 @@ Release Notes PlatformIO 3.0 -------------- +3.2.1 (2016-12-07) +~~~~~~~~~~~~~~~~~~ + +* Changed default `LDF Mode `__ + from ``chain+`` to ``chain`` + 3.2.0 (2016-12-07) ~~~~~~~~~~~~~~~~~~ diff --git a/docs b/docs index 3c9020db..fad663db 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 3c9020db7047e77d70ba12dee115c7edc4cc2025 +Subproject commit fad663db0c599d6e5ef42d90263cfdbf686eca4e diff --git a/platformio/__init__.py b/platformio/__init__.py index 15c76cb0..b15e769a 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 2, 0) +VERSION = (3, 2, 1) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/builder/tools/piolib.py b/platformio/builder/tools/piolib.py index 1b2bf101..8c1dc924 100644 --- a/platformio/builder/tools/piolib.py +++ b/platformio/builder/tools/piolib.py @@ -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)