Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wb-plc",
"description": "Wiren Board controller skills — operate, configure, troubleshoot WB hardware via SSH and wb-cli.",
"version": "1.13.2",
"version": "1.13.3",
"author": {
"name": "Wiren Board",
"url": "https://wirenboard.com"
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
wb-cli (1.8.16) stable; urgency=medium

* wb-plc plugin bumped to 1.13.3. wb-dev codestyle reference: the
Python key-differences summary now includes the multi-line
docstring rule (nothing after the opening triple quotes, closing
quotes on their own line), mirroring wirenboard/codestyle PR #123.

-- Ilya Tikhonyuk <ilya.tikhonyuk@wirenboard.com> Tue, 15 Jul 2026 13:00:00 +0300

wb-cli (1.8.15) stable; urgency=medium

* No functional changes. wb-plc plugin bumped to 1.13.2: new wb-serial
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "wb-cli"
version = "1.8.15"
version = "1.8.16"
description = "Command-line interface to a Wiren Board controller"
requires-python = ">=3.9"
authors = [{name = "Wiren Board Team", email = "info@wirenboard.com"}]
Expand Down
1 change: 1 addition & 0 deletions wb-plc/skills/wb-dev/references/codestyle.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Base: PEP8. Key differences:
- **Double quotes** for strings: `"string"` (not `'string'`)
- Type annotations required
- Trailing comma after last element in multi-line collections
- Docstrings are **always multi-line**, even for a one-sentence text: nothing on the line after the opening `"""`, text starts on the next line, closing `"""` on its own line. Not enforced by the linters — reviewers check it

**Tools — run before every commit:**

Expand Down
2 changes: 1 addition & 1 deletion wb_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.15"
__version__ = "1.8.16"
Loading