@hyperscale0/hsx 5.0.0 → 5.0.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # HSX 5.0.1
2
+
3
+ Per-action subject evidence compiles: `fields { price: money = subject.price }`
4
+ and `set: { x: { field: subject.y } }` accept requirements declared on the
5
+ action alone (UDL 4.2.1).
6
+
1
7
  # HSX 5.0.0
2
8
 
3
9
  Money moves refuse a zero amount unless the action declares `allowZero: true`,
@@ -1,3 +1,3 @@
1
- export declare const HSX_VERSION = "5.0.0";
1
+ export declare const HSX_VERSION = "5.0.1";
2
2
  export declare const HSX_TARGET_UDL_VERSION = 4;
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
- export const HSX_VERSION = "5.0.0";
1
+ export const HSX_VERSION = "5.0.1";
2
2
  export const HSX_TARGET_UDL_VERSION = 4;
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperscale0/hsx",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "The strictly typed HSX language: compile total financial programs into canonical UDL.",
5
5
  "keywords": [
6
6
  "hsx",
@@ -86,7 +86,7 @@
86
86
  },
87
87
  "dependencies": {
88
88
  "@hyperscale0/adl": "1.0.0-beta.8",
89
- "@hyperscale0/udl": "4.2.0",
89
+ "@hyperscale0/udl": "4.2.1",
90
90
  "fast-sha256": "1.3.0"
91
91
  },
92
92
  "devDependencies": {
@@ -98,5 +98,5 @@
98
98
  "Amir Ayub",
99
99
  "Sara AlBakaawi"
100
100
  ],
101
- "gitHead": "2c4281aeb2cc0a10e13a91e8d67ae7abf608680f"
101
+ "gitHead": "2ba5fb5f926f8f78ac3a5f2531c0b5b9266de9ac"
102
102
  }
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const HSX_VERSION = "5.0.0";
1
+ export const HSX_VERSION = "5.0.1";
2
2
  export const HSX_TARGET_UDL_VERSION = 4;