@calcit/procs 0.13.24 → 0.13.26

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.
Binary file
@@ -33,9 +33,9 @@ deftype RespoNode
33
33
 
34
34
  ```cirru.no-check
35
35
  defenum RequestState
36
- (:idle)
37
- (:loading)
38
- (:failed 'String)
36
+ :idle
37
+ :loading
38
+ :failed 'String
39
39
  ```
40
40
 
41
41
  `deftype` 表示已有类型之间的静态集合,不产生新的值构造器:
@@ -505,8 +505,8 @@ Trait 适合共同方法,但 Respo diff 需要按具体节点种类读取不
505
505
 
506
506
  ```cirru.no-check
507
507
  defenum RespoNode
508
- (:component 'Component)
509
- (:element 'Element)
508
+ :component 'Component
509
+ :element 'Element
510
510
  ```
511
511
 
512
512
  这会改变 Respo 当前数据表示、相等性路径和 DSL 输出。`deftype` 的目标正是获得相同的静态分支能力,而不引入这层运行时包装。
@@ -0,0 +1,4 @@
1
+ # Correct transparent-union RFC enum examples
2
+
3
+ - Removed redundant parentheses from line-oriented `defenum` variants in the transparent-union RFC.
4
+ - Verified the `RequestState` and `RespoNode` examples with `cr cirru parse -e`.
@@ -0,0 +1,5 @@
1
+ # Transparent union review fixes
2
+
3
+ - Made test-only semantic-version helpers private to remove unnecessary crate visibility.
4
+ - Added regression coverage for transparent-union struct matching through nominal fallback and imported namespace resolution when scope types are empty.
5
+ - Full Rust tests and Clippy validation passed; the repository-wide agent-interface check still reports an existing deprecated `cr config version` scenario.
@@ -0,0 +1,4 @@
1
+ # Release 0.13.26
2
+
3
+ - Publish transparent union type support and the completed review fixes from PR #369.
4
+ - Keep Cargo and npm package versions synchronized at 0.13.26 before tagging from main.
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.13.24",
3
+ "version": "0.13.26",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@calcit/procs",
3
- "version": "0.13.24",
3
+ "version": "0.13.26",
4
4
  "main": "./lib/calcit.procs.mjs",
5
5
  "devDependencies": {
6
6
  "@types/node": "^25.7.0",