@qui-cli/progress 3.0.1 → 3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -8
  2. package/package.json +8 -9
package/CHANGELOG.md CHANGED
@@ -2,27 +2,37 @@
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
- ## [3.0.1](https://github.com/battis/qui-cli/compare/progress/3.0.0...progress/3.0.1) (2025-08-04)
5
+ ## [3.0.3](https://github.com/battis/qui-cli/compare/progress/3.0.2...progress/3.0.3) (2025-11-08)
6
6
 
7
7
 
8
8
  ### Bug Fixes
9
9
 
10
- * update lagging peer dependency specs ([30c0c27](https://github.com/battis/qui-cli/commit/30c0c279d4247a69a30efef8a7426442752cd9c0))
10
+ * simplify peer versions ([da8823d](https://github.com/battis/qui-cli/commit/da8823d4803cd9a0875a0c6cbb3c1efee03f11dd))
11
11
 
12
- ## [3.0.0](https://github.com/battis/qui-cli/compare/progress/2.0.3...progress/3.0.0) (2025-08-02)
12
+ ## [3.0.2](https://github.com/battis/qui-cli/compare/progress/3.0.1...progress/3.0.2) (2025-11-07)
13
+
14
+ ### Bug Fixes
13
15
 
16
+ - adjust peer dependencies to current values ([966abc1](https://github.com/battis/qui-cli/commit/966abc192c68319d06b399ff3f0362032ab8d89a))
14
17
 
15
- ### BREAKING CHANGES
18
+ ## [3.0.1](https://github.com/battis/qui-cli/compare/progress/3.0.0...progress/3.0.1) (2025-08-04)
16
19
 
17
- * rename @battis/qui-cli.progress --> @qui-cli/progress
20
+ ### Bug Fixes
21
+
22
+ - update lagging peer dependency specs ([30c0c27](https://github.com/battis/qui-cli/commit/30c0c279d4247a69a30efef8a7426442752cd9c0))
23
+
24
+ ## [3.0.0](https://github.com/battis/qui-cli/compare/progress/2.0.3...progress/3.0.0) (2025-08-02)
25
+
26
+ ### ⚠ BREAKING CHANGES
18
27
 
19
- * rename @battis/qui-cli.progress --> @qui-cli/progress ([9c13835](https://github.com/battis/qui-cli/commit/9c13835d1a11b82eadb2ff2e04fd5f2b9c2a4824))
28
+ - rename @battis/qui-cli.progress --> @qui-cli/progress
20
29
 
30
+ - rename @battis/qui-cli.progress --> @qui-cli/progress ([9c13835](https://github.com/battis/qui-cli/commit/9c13835d1a11b82eadb2ff2e04fd5f2b9c2a4824))
21
31
 
22
32
  ### Bug Fixes
23
33
 
24
- * update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
25
- * update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
34
+ - update dependencies to renamed @qui-cli/colors ([ff80e86](https://github.com/battis/qui-cli/commit/ff80e8625ef98834afdf04e57bfedb1906834e2b))
35
+ - update dependencies to renamed @qui-cli/plugin ([117ea85](https://github.com/battis/qui-cli/commit/117ea85256ec69c807c5b56293546d9c350fd43f))
26
36
 
27
37
  ## [2.0.3](https://github.com/battis/qui-cli/compare/progress/2.0.2...progress/2.0.3) (2025-06-23)
28
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qui-cli/progress",
3
- "version": "3.0.1",
3
+ "version": "3.0.3",
4
4
  "description": "@qui-cli Plugin: Progress bar for CLI app",
5
5
  "homepage": "https://github.com/battis/qui-cli/tree/main/packages/progress#readme",
6
6
  "repository": {
@@ -16,22 +16,21 @@
16
16
  "main": "./dist/index.js",
17
17
  "types": "./dist/index.d.ts",
18
18
  "dependencies": {
19
- "chalk": "^5.5.0",
20
- "cli-progress": "^3.12.0"
19
+ "chalk": "^5.6.2",
20
+ "cli-progress": "^3.12.0",
21
+ "@qui-cli/colors": "3.1.0"
21
22
  },
22
23
  "devDependencies": {
23
24
  "@tsconfig/node20": "^20.1.6",
24
25
  "@types/cli-progress": "^3.11.6",
25
- "commit-and-tag-version": "^12.5.2",
26
+ "commit-and-tag-version": "^12.6.0",
26
27
  "del-cli": "^6.0.0",
27
28
  "npm-run-all": "^4.1.5",
28
- "typescript": "^5.9.2",
29
- "@qui-cli/plugin": "3.0.0",
30
- "@qui-cli/colors": "3.0.1"
29
+ "typescript": "^5.9.3",
30
+ "@qui-cli/plugin": "4.0.0"
31
31
  },
32
32
  "peerDependencies": {
33
- "@qui-cli/colors": "3.x",
34
- "@qui-cli/plugin": "3.x"
33
+ "@qui-cli/plugin": "3.x || 4.x"
35
34
  },
36
35
  "scripts": {
37
36
  "clean": "del ./dist",