@adia-ai/web-modules 0.0.5 → 0.2.0

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 +20 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -11,6 +11,26 @@ Built from `@adia-ai/web-components` primitives.
11
11
 
12
12
  _No pending changes._
13
13
 
14
+ ## [0.2.0] — 2026-05-02
15
+
16
+ **Lockstep cut.** All 8 published `@adia-ai/*` packages now share one
17
+ version, governed by [`docs/specs/package-architecture.md` § 15
18
+ (Versioning Policy)](../../docs/specs/package-architecture.md#15-versioning-policy).
19
+
20
+ ### Changed
21
+
22
+ - `version`: `0.0.5` → `0.2.0`.
23
+ - `peerDependencies["@adia-ai/web-components"]`: `>=0.0.33` → `^0.2.0`.
24
+ - `peerDependencies["@adia-ai/a2ui-utils"]`: `^0.0.2` → `^0.2.0`.
25
+
26
+ ### No source changes
27
+
28
+ Composite element source (shell, chat, editor, runtime clusters) is
29
+ byte-identical to 0.0.5. The cut bumps version + tightens peer-dep
30
+ ranges only. Consumers who want the 0.0.5 work (page-content
31
+ container-query system) get it via either 0.0.5 or 0.2.0 — both ship
32
+ the same module code.
33
+
14
34
  ## [0.0.5] — 2026-05-02
15
35
 
16
36
  Additive — `page-content` container-query system on `<admin-shell>`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adia-ai/web-modules",
3
- "version": "0.0.5",
3
+ "version": "0.2.0",
4
4
  "description": "AdiaUI composite custom elements — shell, chat, editor, runtime clusters built from @adia-ai/web-components primitives. Subpath exports per cluster.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,8 +33,8 @@
33
33
  "./runtime/**/*.js"
34
34
  ],
35
35
  "peerDependencies": {
36
- "@adia-ai/web-components": ">=0.0.33",
37
- "@adia-ai/a2ui-utils": "^0.0.2"
36
+ "@adia-ai/web-components": "^0.2.0",
37
+ "@adia-ai/a2ui-utils": "^0.2.0"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public",