uneven-ai 0.12.1 → 0.12.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.
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
  ## 🏗️ Architecture
17
17
 
18
- Starting with **v0.12.1**, Uneven AI is built on a robust modular architecture that ensures stability, privacy, and performance. The system is divided into clear layers of responsibility:
18
+ Starting with **v0.12.2**, Uneven AI is built on a robust modular architecture that ensures stability, privacy, and performance. The system is divided into clear layers of responsibility:
19
19
 
20
20
  - **🌍 Domain**: Pure business logic and safety rules (the "Brain").
21
21
  - **⚙️ Application**: Orchestrates analysis, terminal watching, and fix application.
@@ -11,7 +11,7 @@ import * as path from 'path';
11
11
  import * as crypto from 'crypto';
12
12
  // ─── Constants ────────────────────────────────────────────────────────────────
13
13
  const SESSION_FILE = '.uneven/session.json';
14
- const UNEVEN_VERSION = '0.11.1';
14
+ const UNEVEN_VERSION = '0.12.2';
15
15
  const STALE_THRESHOLD_MS = 60 * 60 * 1000; // 1 hour
16
16
  const LOCK_TIMEOUT_MS = 30_000; // 30 seconds
17
17
  const LOCK_DEBOUNCE_MS = 1_500; // 1.5 seconds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uneven-ai",
3
- "version": "0.12.1",
3
+ "version": "0.12.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"