From 1efea0bd27fc57ec0694cade4eb7f59d8e2aed01 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 8 Aug 2016 16:06:12 +0300 Subject: [PATCH] Mark "lib_deps" as PIO3; first development "alpha" --- docs/projectconf.rst | 4 ++++ platformio/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/projectconf.rst b/docs/projectconf.rst index 09c8f35f..d0cb2468 100644 --- a/docs/projectconf.rst +++ b/docs/projectconf.rst @@ -644,6 +644,10 @@ Library options ``lib_deps`` ^^^^^^^^^^^^ +.. versionadded:: 3.0 +.. seealso:: + Please make sure to read :ref:`ldf` guide first. + Specify project dependencies that should be installed automatically to :ref:`projectconf_pio_libdeps_dir` before an environment process. Multiple dependencies are allowed (multi-lines). diff --git a/platformio/__init__.py b/platformio/__init__.py index 706fe860..98cf88b7 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 0, "0.dev22") +VERSION = (3, 0, "0a1") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"