@sprig-and-prose/sprig 0.7.0 → 0.8.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 +21 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @sprig-and-prose/sprig
2
2
 
3
+ ## 0.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 313f9fa: **sprig (CLI, minor):** Release includes scene compiler changes (flat actor/location/portal syntax) and edge config v1.
8
+
9
+ **sprig-scenes (minor):** Remove plural shorthand container blocks (`actors {}`, `locations {}`, `portals {}`). Use only flat declarations: `actor <Name> { ... }`, `location <Name> { ... }`, `portal <Name> { ... }`. BREAKING: plural blocks now compile-error with a clear message.
10
+
11
+ **sprig-edge (minor):** Edge config v1: `locations.<Name>.directory`, `collections.<Name>` with `location` and `sources[]`. Source shape: `{ type: "file", path, format, mode }`. No backward compatibility.
12
+
13
+ **create-scene-tutorial (minor):** Generated demo scene and EDGE_CONFIG use flat actor/location/portal syntax and v1 edge config format.
14
+
15
+ **prose-parser (patch):** Scanner test uses flat `actor A { }` syntax instead of deprecated `actors { }`.
16
+
17
+ **scene-example (patch):** Example prose fixtures updated to flat actor/location/portal declarations.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [313f9fa]
22
+ - @sprig-and-prose/sprig-scenes@0.4.0
23
+
3
24
  ## 0.7.0
4
25
 
5
26
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sprig-and-prose/sprig",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "type": "module",
5
5
  "description": "Sprig CLI tool for compiling and serving universes",
6
6
  "main": "dist/cli.js",