eric-sdk 0.1.3 → 0.1.4

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 (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +4 -1
package/CHANGELOG.md CHANGED
@@ -7,6 +7,14 @@ Pre-1.0 releases may introduce intentional breaking changes as the API surface e
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.1.4] – 2026-02-13
11
+
12
+ ### Changed
13
+
14
+ - Added `engines` field specifying Node.js >=20.
15
+
16
+ ---
17
+
10
18
  ## [0.1.3] – 2026-02-06
11
19
 
12
20
  ### Changed:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eric-sdk",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Official SDK for enforcing policy-governed AI execution using the Eric AI governance layer",
5
5
  "author": "Rod Bridges",
6
6
  "license": "MIT",
@@ -15,6 +15,9 @@
15
15
  "types": "./dist/index.d.ts"
16
16
  }
17
17
  },
18
+ "engines": {
19
+ "node": ">=20"
20
+ },
18
21
  "scripts": {
19
22
  "build": "tsup src/index.ts --format esm,cjs --dts",
20
23
  "prepare": "npm run build",