From fbadf839976ea28341a4c75e867eff298ade6de7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 3 Aug 2016 00:26:48 +0300 Subject: [PATCH] Use stable docs --- platformio/__init__.py | 2 +- platformio/commands/lib.py | 2 +- platformio/exception.py | 2 +- platformio/maintenance.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/platformio/__init__.py b/platformio/__init__.py index 6bd42967..46a60abe 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -14,7 +14,7 @@ import sys -VERSION = (3, 0, "0.dev16") +VERSION = (3, 0, "0.dev17") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" diff --git a/platformio/commands/lib.py b/platformio/commands/lib.py index 2a708d81..aacf0fc6 100644 --- a/platformio/commands/lib.py +++ b/platformio/commands/lib.py @@ -179,7 +179,7 @@ def lib_search(query, json_output, page, **filters): "please use documentation:") click.secho( "http://docs.platformio.org" - "/en/latest/userguide/lib/cmd_search.html\n", + "/en/stable/userguide/lib/cmd_search.html\n", fg="cyan") return diff --git a/platformio/exception.py b/platformio/exception.py index 049d178e..50da0265 100644 --- a/platformio/exception.py +++ b/platformio/exception.py @@ -181,7 +181,7 @@ class CIBuildEnvsEmpty(PlatformioException): class TestDirEmpty(PlatformioException): MESSAGE = "Test directory '{0}' is empty. More details about Unit "\ - "Testing:\n http://docs.platformio.org/en/latest/platforms/"\ + "Testing:\n http://docs.platformio.org/en/stable/platforms/"\ "unit_testing.html" diff --git a/platformio/maintenance.py b/platformio/maintenance.py index 2f7d66d1..78407ab5 100644 --- a/platformio/maintenance.py +++ b/platformio/maintenance.py @@ -207,7 +207,7 @@ def check_platformio_upgrade(): click.secho("pip install -U platformio", fg="cyan", nl=False) click.secho("` command.", fg="yellow") click.secho("Changes: ", fg="yellow", nl=False) - click.secho("http://docs.platformio.org/en/latest/history.html", fg="cyan") + click.secho("http://docs.platformio.org/en/stable/history.html", fg="cyan") click.echo("*" * terminal_width) click.echo("")