@zackees/soldr 0.8.3 → 0.8.5

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.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -235,7 +235,11 @@ files touched. What you get over `build-backend = "maturin"`:
235
235
  - **Compilation caching** — rustc invocations run under soldr's
236
236
  `RUSTC_WRAPPER`, so repeat builds hit the cache.
237
237
 
238
- soldr's own wheel is built this way (see this repo's `pyproject.toml`).
238
+ Note: soldr's own wheel is built with plain `build-backend = "maturin"`,
239
+ not with itself — using soldr as its own build backend created a
240
+ bootstrap cycle where a broken installed soldr made the fix in this
241
+ repo uninstallable (`pip install .` pulled the *published* soldr wheel
242
+ and shelled out to the system `soldr` binary).
239
243
 
240
244
  ## How it works
241
245
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zackees/soldr",
3
- "version": "0.8.3",
3
+ "version": "0.8.5",
4
4
  "description": "Instant Rust tools and builds from one command.",
5
5
  "license": "BSD-3-Clause",
6
6
  "homepage": "https://github.com/zackees/soldr",