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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.code
3
- Version: 0.18.1
3
+ Version: 0.19.0
4
4
  Summary: Preconfigured code formatting and linting.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-Expression: BSD-3-Clause
@@ -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
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.code"
3
- version = "0.18.1"
3
+ version = "0.19.0"
4
4
  description = "Preconfigured code formatting and linting."
5
5
  authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
6
6
  readme = "README.md"
File without changes
File without changes
File without changes