diff --git a/HISTORY.rst b/HISTORY.rst index ae4961ea..e0432a6d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,11 @@ Release Notes PlatformIO 2.0 -------------- +2.9.2 (2016-??-??) +~~~~~~~~~~~~~~~~~~ + +* Fixed bug with ``env_default`` when ``pio run -e`` is used + 2.9.1 (2016-04-30) ~~~~~~~~~~~~~~~~~~ diff --git a/README.rst b/README.rst index 6a5d4d87..32f07e81 100644 --- a/README.rst +++ b/README.rst @@ -62,9 +62,9 @@ IDE integration. Arduino and MBED compatible. Ready for Cloud compiling. platforms and frameworks; learn via examples; be up-to-date with the latest version. -*Atmel AVR & SAM, Espressif, Freescale Kinetis, Nordic nRF51, NXP LPC, -Silicon Labs EFM32, ST STM32, TI MSP430 & Tiva, Teensy, Arduino, mbed, -libOpenCM3, etc.* +*Atmel AVR & SAM, Espressif, Freescale Kinetis, Intel ARC32, Lattice iCE40, +Microchip PIC32, Nordic nRF51, NXP LPC, Silicon Labs EFM32, ST STM32, +TI MSP430 & Tiva, Teensy, Arduino, mbed, libOpenCM3, etc.* .. image:: https://raw.githubusercontent.com/platformio/platformio/develop/docs/_static/platformio-demo-wiring.gif :target: http://platformio.org diff --git a/examples b/examples index c06e8437..48e856c1 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit c06e843757238811d50f5e5008c211e694308b7e +Subproject commit 48e856c1e88c0a7c384590a574c289f70f596bd6 diff --git a/platformio/__init__.py b/platformio/__init__.py index 0f6724ec..d8d22716 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (2, 9, 1) +VERSION = (2, 9, "2.dev0") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/commands/run.py b/platformio/commands/run.py index c0739dc5..46541e57 100644 --- a/platformio/commands/run.py +++ b/platformio/commands/run.py @@ -81,7 +81,8 @@ def cli(ctx, environment, target, upload_port, # pylint: disable=R0913,R0914 envname = section[4:] if ((environment and envname not in environment) or - (env_default and envname not in env_default)): + (not environment and env_default and + envname not in env_default)): # echo("Skipped %s environment" % style(envname, fg="yellow")) continue