velaris-lang 8.2.1 → 8.3.1

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.
package/README.md CHANGED
@@ -66,6 +66,6 @@ than mysterious. If you ask for a subcommand that version does not
66
66
  have, it says which command and which version introduced it instead of
67
67
  handing it over. `pip install -U velaris-lang` upgrades the compiler.
68
68
 
69
- [Documentation](https://gowrishankar-infra.github.io/velaris-lang/) ·
70
- [Playground](https://gowrishankar-infra.github.io/velaris-lang/playground.html) ·
69
+ [Documentation](https://velaris-lang.dev/) ·
70
+ [Playground](https://velaris-lang.dev/playground.html) ·
71
71
  [Source](https://github.com/gowrishankar-infra/velaris-lang)
package/bin/velaris.js CHANGED
@@ -56,8 +56,12 @@ const INTRODUCED = {
56
56
  mcp: "4.3.3",
57
57
  migrate: "5.0.0",
58
58
  "deps-diff": "7.1.0",
59
+ "permissions-ratchet": "8.3.0",
59
60
  eject: "8.1.0",
60
61
  stats: "8.2.0",
62
+ eval: "8.3.0",
63
+ receipts: "8.3.0",
64
+ replay: "8.3.0",
61
65
  };
62
66
 
63
67
  // The two flags the compiler takes before any command, each with a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "velaris-lang",
3
- "version": "8.2.1",
3
+ "version": "8.3.1",
4
4
  "mcpName": "io.github.gowrishankar-infra/velaris",
5
5
  "description": "Run code you did not write. A language where a signature declares its effects and promises, and the runtime refuses anything you did not allow.",
6
6
  "keywords": [
@@ -13,7 +13,7 @@
13
13
  "mcp",
14
14
  "prover"
15
15
  ],
16
- "homepage": "https://gowrishankar-infra.github.io/velaris-lang/",
16
+ "homepage": "https://velaris-lang.dev/",
17
17
  "repository": {
18
18
  "type": "git",
19
19
  "url": "git+https://github.com/gowrishankar-infra/velaris-lang.git"
package/python.js CHANGED
@@ -140,4 +140,4 @@ export const NOT_INSTALLED =
140
140
  "Velaris needs its compiler, which is a Python package:\n" +
141
141
  "\n pip install velaris-lang\n" +
142
142
  "\nOr try it with nothing installed:\n" +
143
- " https://gowrishankar-infra.github.io/velaris-lang/playground.html";
143
+ " https://velaris-lang.dev/playground.html";