Add "pio" command line alias for "platformio" command // Resolve #447

This commit is contained in:
Ivan Kravets
2016-01-14 01:26:24 +02:00
parent 88fe8f2129
commit b1e9dea790
3 changed files with 4 additions and 1 deletions

View File

@ -7,6 +7,8 @@ PlatformIO 2.0
2.7.2 (2016-01-??)
~~~~~~~~~~~~~~~~~~
* Added ``pio`` command line alias for ``platformio`` command
(`issue #447 <https://github.com/platformio/platformio/issues/447>`_)
* Added SPL-Framework support for Nucleo F401RE board
(`issue #453 <https://github.com/platformio/platformio/issues/453>`_)
* Added ``upload_resetmethod`` option to `Project Configuration File platformio.ini <http://docs.platformio.org/en/latest/projectconf.html>`__

View File

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

View File

@ -54,6 +54,7 @@ setup(
},
entry_points={
"console_scripts": [
"pio = platformio.__main__:main",
"platformio = platformio.__main__:main"
]
},