Search libraries by headers/includes with `platformio lib search --header` option

This commit is contained in:
Ivan Kravets
2016-09-07 18:50:09 +03:00
parent a28e04bfde
commit f7b994354b
3 changed files with 4 additions and 2 deletions

View File

@ -7,7 +7,7 @@ PlatformIO 3.0
3.0.0 (2016-??-??)
~~~~~~~~~~~~~~~~~~
* PlatformIO Plus
* `PlatformIO Plus <https://pioplus.com>`__
+ Local and Embedded `Unit Testing <http://docs.platformio.org/en/latest/unit_testing.html>`__
(`issue #408 <https://github.com/platformio/platformio/issues/408>`_,
@ -42,6 +42,7 @@ PlatformIO 3.0
(`issue #588 <https://github.com/platformio/platformio/issues/588>`_)
+ Allowed ``library.json`` to specify sources other than PlatformIO's Repository
(`issue #461 <https://github.com/platformio/platformio/issues/461>`_)
+ Search libraries by headers/includes with ``platformio lib search --header`` option
* New Intelligent Library Build System

View File

@ -787,7 +787,7 @@ Example:
.. seealso::
Please make sure to read :ref:`ldf` guide first.
A list with extra directories/storages where Library Dependency Finder will
A list with extra directories/storages where :ref:`ldf` will
look for dependencies. Multiple paths are allowed. Please separate them
using comma+space ", ".

View File

@ -164,6 +164,7 @@ def echo_liblist_item(item):
@click.option("-k", "--keyword", multiple=True)
@click.option("-f", "--framework", multiple=True)
@click.option("-p", "--platform", multiple=True)
@click.option("-i", "--header", multiple=True)
@click.option(
"--noninteractive",
is_flag=True,