topaz-lang 5.4.1 → 5.5.0

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 (3) hide show
  1. package/README.md +2 -2
  2. package/install.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,7 @@ npx -p topaz-lang topaz run main.tpz
16
16
  On install, a `postinstall` step downloads the `topaz` binary for your platform
17
17
  (matching this package's version) and verifies its SHA256. `topaz run`,
18
18
  `topaz check`, and `topaz emit` are standalone; native `topaz build` additionally
19
- needs a Rust toolchain present on your machine. Topaz 5.4.1 also includes the
20
- experimental `topaz build --target python --experimental` witness artifact path.
19
+ needs a Rust toolchain present on your machine. Topaz 5.5.0 also includes the
20
+ full-status Python backend through `topaz build --target python`.
21
21
 
22
22
  License: Apache-2.0.
package/install.js CHANGED
@@ -1,5 +1,5 @@
1
1
  // postinstall: download the prebuilt `topaz` binary that matches THIS package
2
- // version (so `npm i topaz-lang@5.4.1` pins topaz v5.4.1), verify its SHA256,
2
+ // version (so `npm i topaz-lang@5.4.8` pins topaz v5.4.8), verify its SHA256,
3
3
  // and drop it next to the bin shim. No Rust source, no build.
4
4
  'use strict';
5
5
  const { mkdir, writeFile, chmod, rename } = require('node:fs/promises');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "topaz-lang",
3
- "version": "5.4.1",
3
+ "version": "5.5.0",
4
4
  "description": "The Topaz language toolchain (topaz run / check / emit / build).",
5
5
  "homepage": "https://topaz.ooo",
6
6
  "license": "Apache-2.0",