@qui-cli/qui-cli 5.0.0 → 5.0.1

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 +12 -12
package/CHANGELOG.md CHANGED
@@ -2,8 +2,24 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [5.0.1](https://github.com/battis/qui-cli/compare/qui-cli/5.0.0...qui-cli/5.0.1) (2025-11-08)
6
+
7
+ ### Bug Fixes
8
+
9
+ - remove all ambiguity from peer dependencies ([ced3fac](https://github.com/battis/qui-cli/commit/ced3faced1bc340457ca43e3be11afa3933b6d72))
10
+
5
11
  ## [5.0.0](https://github.com/battis/qui-cli/compare/qui-cli/4.0.3...qui-cli/5.0.0) (2025-11-07)
6
12
 
13
+ ### ⚠ BREAKING CHANGES
14
+
15
+ - group arguments by plugin in usage
16
+ - **plugin@4.0.0** auto-document default arg values
17
+
18
+ ### revert
19
+
20
+ - group arguments by plugin in usage ([ec3d4bf](https://github.com/battis/qui-cli/commit/ec3d4bf6ef9c59a6da3ede8603554d2dcd2581ad))
21
+ - **plugin@4.0.0** auto-document default arg values ([e01e157](https://github.com/battis/qui-cli/commit/e01e157f06a3a801628ca79366e3f0060be2322e))
22
+
7
23
  ## [4.0.3](https://github.com/battis/qui-cli/compare/qui-cli/4.0.2...qui-cli/4.0.3) (2025-11-04)
8
24
 
9
25
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/qui-cli",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Quickly build a CLI app",
5
5
  "homepage": "https://github.com/battis/qui-cli/tree/main/packages/qui-cli#readme",
6
6
  "repository": {
@@ -31,25 +31,25 @@
31
31
  "npm-run-all": "^4.1.5",
32
32
  "tsx": "^4.20.6",
33
33
  "typescript": "^5.9.3",
34
- "@qui-cli/core": "5.0.0",
35
- "@qui-cli/env": "5.0.0",
36
34
  "@qui-cli/log": "4.0.0",
35
+ "@qui-cli/env": "5.0.0",
36
+ "@qui-cli/core": "5.0.0",
37
37
  "@qui-cli/plugin": "4.0.0",
38
- "@qui-cli/progress": "3.0.1",
39
- "@qui-cli/root": "3.0.1",
40
- "@qui-cli/shell": "3.0.1",
38
+ "@qui-cli/shell": "3.0.3",
39
+ "@qui-cli/root": "3.0.4",
40
+ "@qui-cli/progress": "3.0.4",
41
41
  "@qui-cli/validators": "3.0.2"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@inquirer/prompts": "^7.x",
45
- "@qui-cli/env": "5.0.0",
46
- "@qui-cli/plugin": "4.0.0",
47
45
  "@qui-cli/core": "5.0.0",
46
+ "@qui-cli/plugin": "4.0.0",
47
+ "@qui-cli/env": "5.0.0",
48
48
  "@qui-cli/log": "4.0.0",
49
- "@qui-cli/progress": "3.0.1",
50
- "@qui-cli/root": "3.0.1",
51
- "@qui-cli/shell": "3.0.1",
52
- "@qui-cli/validators": "3.0.2"
49
+ "@qui-cli/root": "3.0.4",
50
+ "@qui-cli/shell": "3.0.3",
51
+ "@qui-cli/validators": "3.0.2",
52
+ "@qui-cli/progress": "3.0.4"
53
53
  },
54
54
  "engines": {
55
55
  "node": ">=12.17"