plain.code 0.13.0__tar.gz → 0.14.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.13.0 → plain_code-0.14.0}/PKG-INFO +2 -2
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/CHANGELOG.md +10 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/pyproject.toml +2 -2
- {plain_code-0.13.0 → plain_code-0.14.0}/.gitignore +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/LICENSE +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/README.md +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/README.md +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/__init__.py +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/biome.py +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/cli.py +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/entrypoints.py +0 -0
- {plain_code-0.13.0 → plain_code-0.14.0}/plain/code/ruff_defaults.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plain.code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.14.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
|
|
@@ -10,7 +10,7 @@ Requires-Dist: plain<1.0.0
|
|
|
10
10
|
Requires-Dist: requests>=2.0.0
|
|
11
11
|
Requires-Dist: ruff>=0.1.0
|
|
12
12
|
Requires-Dist: tomlkit>=0.11.0
|
|
13
|
-
Requires-Dist: ty>=0.0.
|
|
13
|
+
Requires-Dist: ty>=0.0.1a31
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
|
|
16
16
|
# plain.code
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-code changelog
|
|
2
2
|
|
|
3
|
+
## [0.14.0](https://github.com/dropseed/plain/releases/plain-code@0.14.0) (2025-12-05)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Updated the minimum ty type checker version to 0.0.1a31 for improved type checking capabilities ([17a2e6d](https://github.com/dropseed/plain/commit/17a2e6d))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required
|
|
12
|
+
|
|
3
13
|
## [0.13.0](https://github.com/dropseed/plain/releases/plain-code@0.13.0) (2025-12-01)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.code"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.14.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"
|
|
@@ -9,7 +9,7 @@ requires-python = ">=3.13"
|
|
|
9
9
|
dependencies = [
|
|
10
10
|
"plain<1.0.0",
|
|
11
11
|
"ruff>=0.1.0",
|
|
12
|
-
"ty>=0.0.
|
|
12
|
+
"ty>=0.0.1a31",
|
|
13
13
|
"requests>=2.0.0",
|
|
14
14
|
"tomlkit>=0.11.0",
|
|
15
15
|
]
|
|
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
|