plain.code 0.18.1__tar.gz → 0.19.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_code-0.18.1 → plain_code-0.19.0}/PKG-INFO +1 -1
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/CHANGELOG.md +10 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/skills/plain-fix/SKILL.md +5 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/pyproject.toml +1 -1
- {plain_code-0.18.1 → plain_code-0.19.0}/.gitignore +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/LICENSE +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/README.md +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/README.md +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/__init__.py +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/annotations.py +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/biome.py +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/cli.py +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/entrypoints.py +0 -0
- {plain_code-0.18.1 → plain_code-0.19.0}/plain/code/ruff_defaults.toml +0 -0
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-code changelog
|
|
2
2
|
|
|
3
|
+
## [0.19.0](https://github.com/dropseed/plain/releases/plain-code@0.19.0) (2026-01-15)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Added code style guidelines to the `plain-fix` AI skill for consistent formatting practices ([fac8673](https://github.com/dropseed/plain/commit/fac8673))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required
|
|
12
|
+
|
|
3
13
|
## [0.18.1](https://github.com/dropseed/plain/releases/plain-code@0.18.1) (2026-01-13)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -11,6 +11,11 @@ uv run plain fix [path]
|
|
|
11
11
|
|
|
12
12
|
Automatically fixes formatting and linting issues using ruff and biome.
|
|
13
13
|
|
|
14
|
+
## Code Style
|
|
15
|
+
|
|
16
|
+
- Add `from __future__ import annotations` at the top of Python files
|
|
17
|
+
- Keep imports at the top of the file unless avoiding circular imports
|
|
18
|
+
|
|
14
19
|
Options:
|
|
15
20
|
|
|
16
21
|
- `--unsafe-fixes` - Apply ruff unsafe fixes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|