rapydscript-ng 0.8.1 → 0.8.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,19 @@
1
+ version 0.8.3
2
+ =======================
3
+
4
+ * ``lint`` command now uses a worker thread pool for large jobs, roughly
5
+ doubling throughput when linting many files at once
6
+ * Fix string concatenation across newlines inside function calls not working
7
+ when one of the strings is an f-string
8
+ * Tree-sitter grammar: f-string expressions inside ``{...}`` are now
9
+ structured as ``interpolation`` nodes, enabling syntax highlighting of
10
+ the embedded expressions in editors that use the tree-sitter grammar
11
+
12
+ version 0.8.2
13
+ =======================
14
+
15
+ * Fix fmt not recognizing stdlib modules in standalone build
16
+
1
17
  version 0.8.1
2
18
  =======================
3
19
 
package/local-agent.md CHANGED
@@ -26,3 +26,7 @@ run the entire suite.
26
26
  Before declaring a task complete, you must follow this exact verification lifecycle:
27
27
  1. Run the local **Build and Test Command** to guarantee zero compilation or compilation-stage errors and no test failures
28
28
  2. If errors occur, analyze the stdout logs completely before writing a fix. Do not guess.
29
+ 3. Run ``rapydscript fmt src`` to ensure any changes you made to .pyj files are
30
+ correctly formatted
31
+ 4. Run ``rapydscript lint src`` to check for any issues in your code
32
+ 5. If the changes you made are user visible, update the changelog
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "start": "node bin/rapydscript",
15
15
  "build-self": "node bin/rapydscript self --complete"
16
16
  },
17
- "version": "0.8.1",
17
+ "version": "0.8.3",
18
18
  "license": "BSD-2-Clause",
19
19
  "engines": {
20
20
  "node": ">=0.14.0"