From f965fd7c2b0a5994c229698c1e065482d41cfa95 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Mon, 14 Nov 2016 17:16:05 +0200 Subject: [PATCH] Show link to the latest version of history after upgrade --- platformio/commands/upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/commands/upgrade.py b/platformio/commands/upgrade.py index ad92ba99..1e761cc4 100644 --- a/platformio/commands/upgrade.py +++ b/platformio/commands/upgrade.py @@ -61,7 +61,7 @@ def cli(): fg="green") click.echo("Release notes: ", nl=False) click.secho( - "http://docs.platformio.org/en/stable/history.html", fg="cyan") + "http://docs.platformio.org/en/latest/history.html", fg="cyan") except Exception as e: # pylint: disable=W0703 if not r: raise exception.UpgradeError("\n".join([str(cmd), str(e)]))