Skip to content

Commit 54f14c6

Browse files
committed
Merge branch 'release/v4.0.2'
2 parents cef7787 + 20a9522 commit 54f14c6

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

HISTORY.rst

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Release Notes
66
PlatformIO 4.0
77
--------------
88

9+
4.0.2 (2019-08-23)
10+
~~~~~~~~~~~~~~~~~~
11+
12+
* Fixed an issue with a broken `LDF <http://docs.platformio.org/page/librarymanager/ldf.html>`__ when checking for framework compatibility (`issue #2940 <https://github.com/platformio/platformio-core/issues/2940>`_)
13+
914
4.0.1 (2019-08-22)
1015
~~~~~~~~~~~~~~~~~~
1116

docs

platformio/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
VERSION = (4, 0, 1)
15+
VERSION = (4, 0, 2)
1616
__version__ = ".".join([str(s) for s in VERSION])
1717

1818
__title__ = "platformio"

platformio/builder/tools/piolib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ def lib_ldf_mode(self):
755755

756756
@property
757757
def lib_compat_mode(self):
758-
return self.validate_ldf_mode(
758+
return self.validate_compat_mode(
759759
self.env.GetProjectOption(
760760
"lib_compat_mode",
761761
self._manifest.get("build", {}).get(

0 commit comments

Comments
 (0)