plain.code 0.9.2__tar.gz → 0.10.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.9.2 → plain_code-0.10.0}/PKG-INFO +2 -2
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/CHANGELOG.md +10 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/pyproject.toml +2 -2
- {plain_code-0.9.2 → plain_code-0.10.0}/.gitignore +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/LICENSE +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/README.md +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/README.md +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/__init__.py +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/biome.py +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/cli.py +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/entrypoints.py +0 -0
- {plain_code-0.9.2 → plain_code-0.10.0}/plain/code/ruff_defaults.toml +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plain.code
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: Preconfigured code formatting and linting.
|
|
5
5
|
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
|
6
6
|
License-File: LICENSE
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.13
|
|
8
8
|
Requires-Dist: plain<1.0.0
|
|
9
9
|
Requires-Dist: requests>=2.0.0
|
|
10
10
|
Requires-Dist: ruff>=0.1.0
|
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-code changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.0](https://github.com/dropseed/plain/releases/plain-code@0.10.0) (2025-09-19)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Minimum Python version increased from 3.11 to 3.13 ([d86e307](https://github.com/dropseed/plain/commit/d86e307))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- Ensure your Python environment is running Python 3.13 or later before upgrading
|
|
12
|
+
|
|
3
13
|
## [0.9.2](https://github.com/dropseed/plain/releases/plain-code@0.9.2) (2025-07-30)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.code"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.10.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"
|
|
7
|
-
requires-python = ">=3.
|
|
7
|
+
requires-python = ">=3.13"
|
|
8
8
|
dependencies = [
|
|
9
9
|
"plain<1.0.0",
|
|
10
10
|
"ruff>=0.1.0",
|
|
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
|