diff --git a/platformio/commands/account.py b/platformio/commands/account.py index 6c48539a..baff541c 100644 --- a/platformio/commands/account.py +++ b/platformio/commands/account.py @@ -61,7 +61,8 @@ def account_forgot(**kwargs): pioplus_call(sys.argv[1:]) -@cli.command("show", short_help="PIO Account information: groups, permissions") +@cli.command("show", short_help="PIO Account information") +@click.option("--offline", is_flag=True) @click.option("--json-output", is_flag=True) def account_show(**kwargs): pioplus_call(sys.argv[1:]) diff --git a/platformio/managers/core.py b/platformio/managers/core.py index 5cb8b258..df0b3e81 100644 --- a/platformio/managers/core.py +++ b/platformio/managers/core.py @@ -22,7 +22,7 @@ from platformio.managers.package import PackageManager CORE_PACKAGES = { "pysite-pioplus": ">=0.3.0,<2", - "tool-pioplus": ">=0.8.2,<2", + "tool-pioplus": ">=0.8.3,<2", "tool-unity": "~1.20302.1", "tool-scons": "~3.20501.2" }