plain.code 0.10.0__tar.gz → 0.10.1__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.10.0 → plain_code-0.10.1}/PKG-INFO +1 -1
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/CHANGELOG.md +10 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/biome.py +2 -2
- {plain_code-0.10.0 → plain_code-0.10.1}/pyproject.toml +1 -1
- {plain_code-0.10.0 → plain_code-0.10.1}/.gitignore +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/LICENSE +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/README.md +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/README.md +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/__init__.py +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/biome_defaults.json +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/cli.py +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/entrypoints.py +0 -0
- {plain_code-0.10.0 → plain_code-0.10.1}/plain/code/ruff_defaults.toml +0 -0
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-code changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.1](https://github.com/dropseed/plain/releases/plain-code@0.10.1) (2025-09-25)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Improved Biome download performance by using larger chunk sizes (1MB instead of 8KB) for faster binary downloads ([9bf4eca](https://github.com/dropseed/plain/commit/9bf4eca))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- No changes required
|
|
12
|
+
|
|
3
13
|
## [0.10.0](https://github.com/dropseed/plain/releases/plain-code@0.10.0) (2025-09-19)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -121,11 +121,11 @@ class Biome:
|
|
|
121
121
|
label="Downloading Biome",
|
|
122
122
|
width=0,
|
|
123
123
|
) as bar:
|
|
124
|
-
for chunk in resp.iter_content(chunk_size=
|
|
124
|
+
for chunk in resp.iter_content(chunk_size=1024 * 1024):
|
|
125
125
|
f.write(chunk)
|
|
126
126
|
bar.update(len(chunk))
|
|
127
127
|
else:
|
|
128
|
-
for chunk in resp.iter_content(chunk_size=
|
|
128
|
+
for chunk in resp.iter_content(chunk_size=1024 * 1024):
|
|
129
129
|
f.write(chunk)
|
|
130
130
|
os.chmod(self.standalone_path, 0o755)
|
|
131
131
|
|
|
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
|