From 2eecbf966cc03ae30fb2f57a8807553669a7dd5f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 23 Aug 2019 15:45:45 +0300 Subject: [PATCH 1/3] Fixed an issue with a broken LDF when checking for framework compatibility // Resolve #2940 --- HISTORY.rst | 5 +++++ platformio/builder/tools/piolib.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index c941ba72..0cc2bb91 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,11 @@ Release Notes PlatformIO 4.0 -------------- +4.0.2 (2019-08-??) +~~~~~~~~~~~~~~~~~~ + +* Fixed an issue with a broken `LDF `__ when checking for framework compatibility (`issue #2940 `_) + 4.0.1 (2019-08-22) ~~~~~~~~~~~~~~~~~~ diff --git a/platformio/builder/tools/piolib.py b/platformio/builder/tools/piolib.py index 1848cbf7..b5ace28c 100644 --- a/platformio/builder/tools/piolib.py +++ b/platformio/builder/tools/piolib.py @@ -755,7 +755,7 @@ class PlatformIOLibBuilder(LibBuilderBase): @property def lib_compat_mode(self): - return self.validate_ldf_mode( + return self.validate_compat_mode( self.env.GetProjectOption( "lib_compat_mode", self._manifest.get("build", {}).get( From f8d957a705979cfc4c740e6b73cbd581c8aa42b1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 23 Aug 2019 16:10:47 +0300 Subject: [PATCH 2/3] Sync docs --- docs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs b/docs index 29f80d45..3f5d12ca 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 29f80d45f2d7fe14918b507d84ec8badc54fe087 +Subproject commit 3f5d12ca25f4af666871d3d87d191a4deb478937 From 20a9522542a21361074f002fe7b6718eb21d4d54 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Fri, 23 Aug 2019 16:17:11 +0300 Subject: [PATCH 3/3] Bump version to 4.0.2 --- HISTORY.rst | 2 +- platformio/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 0cc2bb91..975ddbb3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,7 +6,7 @@ Release Notes PlatformIO 4.0 -------------- -4.0.2 (2019-08-??) +4.0.2 (2019-08-23) ~~~~~~~~~~~~~~~~~~ * Fixed an issue with a broken `LDF `__ when checking for framework compatibility (`issue #2940 `_) diff --git a/platformio/__init__.py b/platformio/__init__.py index 7f7b65d0..ee53de46 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (4, 0, 1) +VERSION = (4, 0, 2) __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"