eric-sdk 0.1.5 → 0.1.6

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 +13 -0
  2. package/package.json +9 -2
package/CHANGELOG.md CHANGED
@@ -7,6 +7,19 @@ Pre-1.0 releases may introduce intentional breaking changes as the API surface e
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.1.6] – 2026-02-25
11
+
12
+ ## Changed
13
+
14
+ Added repository, homepage, and issues metadata to package.json.
15
+
16
+ Rationale
17
+
18
+ Improves npm package transparency and traceability by linking the SDK to its public GitHub source, issue tracking, and documentation.
19
+ No runtime behavior changes.
20
+
21
+ ---
22
+
10
23
  ## [0.1.5] – 2026-02-24
11
24
 
12
25
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eric-sdk",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
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",
@@ -31,5 +31,12 @@
31
31
  "tsup": "^8.5.1",
32
32
  "typescript": "^5.9.3"
33
33
  },
34
- "homepage": "https://ericaicontrol.dev"
34
+ "homepage": "https://github.com/eric-ai-control/eric-sdk#readme",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/eric-ai-control/eric-sdk.git"
38
+ },
39
+ "bugs": {
40
+ "url": "https://github.com/eric-ai-control/eric-sdk/issues"
41
+ }
35
42
  }