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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plain.code
3
- Version: 0.10.0
3
+ Version: 0.10.1
4
4
  Summary: Preconfigured code formatting and linting.
5
5
  Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
6
6
  License-File: LICENSE
@@ -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=8192):
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=8192):
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
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "plain.code"
3
- version = "0.10.0"
3
+ version = "0.10.1"
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