wakespace 0.1.1 → 0.1.2

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 +16 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to `wakespace` are documented here. This project adheres to
4
4
  [Semantic Versioning](https://semver.org/).
5
5
 
6
+ ## 0.1.2 — 2026-06-01
7
+
8
+ ### Added
9
+
10
+ - Added the builtin `development` workflow with explicit plan, design,
11
+ implement, and verify stages for general project work.
12
+
13
+ ### Changed
14
+
15
+ - Worker discovery now reports provider, runtime, and compatibility facts
16
+ without generating worker-creation suggestions.
17
+ - Worker-issued cancellation now records an approval request instead of
18
+ immediately terminating the task.
19
+ - Workers that performed no project writes are prompted to block rather than
20
+ claim completion during the commit fallback pass.
21
+
6
22
  ## 0.1.1 — 2026-06-01
7
23
 
8
24
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wakespace",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Durable wake-loop workspace for agent-driven project development.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -42,13 +42,13 @@
42
42
  },
43
43
  "homepage": "https://github.com/lidessen/wakespace/tree/main/packages/wakespace#readme",
44
44
  "optionalDependencies": {
45
- "wakespace-darwin-arm64": "0.1.1",
46
- "wakespace-darwin-x64": "0.1.1",
47
- "wakespace-linux-x64": "0.1.1",
48
- "wakespace-linux-arm64": "0.1.1",
49
- "wakespace-linux-x64-musl": "0.1.1",
50
- "wakespace-linux-arm64-musl": "0.1.1",
51
- "wakespace-windows-x64": "0.1.1"
45
+ "wakespace-darwin-arm64": "0.1.2",
46
+ "wakespace-darwin-x64": "0.1.2",
47
+ "wakespace-linux-x64": "0.1.2",
48
+ "wakespace-linux-arm64": "0.1.2",
49
+ "wakespace-linux-x64-musl": "0.1.2",
50
+ "wakespace-linux-arm64-musl": "0.1.2",
51
+ "wakespace-windows-x64": "0.1.2"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/bun": "latest",