uneven-ai 1.0.2 → 1.0.3

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to Uneven AI will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.3] - 2026-04-15
9
+
10
+ ### Changed
11
+
12
+ - **README**: remove contributing section — repository is private
13
+
8
14
  ## [1.0.2] - 2026-04-15
9
15
 
10
16
  ### Fixed
package/README.md CHANGED
@@ -454,20 +454,6 @@ New to Uneven AI? Follow the step-by-step guide to verify each feature works cor
454
454
 
455
455
  **[TESTING_GUIDE.md](./TESTING_GUIDE.md)** — covers 10 scenarios: info/hardware detection, indexing, ask, error detection + auto-fix, malware scanner, data analyst, pentest, CI pipeline, log review, and reset.
456
456
 
457
- ---
458
-
459
- ## Contributing
460
-
461
- ```bash
462
- git clone https://github.com/kreivesler/uneven
463
- cd uneven
464
- npm install
465
- npm run build
466
- npm test
467
- ```
468
-
469
- See [CONTRIBUTING.md](./CONTRIBUTING.md) for the full guide.
470
-
471
457
  ## Support & Issues
472
458
 
473
459
  - 🐛 [Report issues](https://github.com/kreivesler/uneven/issues)
@@ -51,7 +51,7 @@ export class SBOMGenerator {
51
51
  const lockFile = await readJson(path.join(this.cwd, 'package-lock.json'));
52
52
  const projectName = packageJson?.name ?? path.basename(this.cwd);
53
53
  const projectVersion = packageJson?.version;
54
- let unevenVersion = '1.0.2';
54
+ let unevenVersion = '1.0.3';
55
55
  try {
56
56
  const pkg = await readJson(new URL('../../../package.json', import.meta.url).pathname);
57
57
  unevenVersion = pkg?.version ?? unevenVersion;
@@ -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 = '1.0.2';
14
+ const UNEVEN_VERSION = '1.0.3';
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": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"