Use stable docs

This commit is contained in:
Ivan Kravets
2016-08-03 00:26:48 +03:00
parent 64b8df6d81
commit fbadf83997
4 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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

View File

@ -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"

View File

@ -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("")