@nbtca/prompt 1.0.8 → 1.0.9

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
@@ -257,6 +257,11 @@ MIT License - See LICENSE file for details
257
257
 
258
258
  ## Changelog
259
259
 
260
+ ### v1.0.9 (2025-12-10)
261
+
262
+ - **Fixed**: Version display in application UI now correctly shows 1.0.9
263
+ - **Note**: v1.0.8 was published but displayed incorrect version number in UI
264
+
260
265
  ### v1.0.8 (2025-12-10)
261
266
 
262
267
  - **Added**: Adaptive terminal rendering with automatic capability detection
@@ -12,7 +12,7 @@ export declare const URLS: {
12
12
  };
13
13
  export declare const APP_INFO: {
14
14
  readonly name: "Prompt";
15
- readonly version: "1.0.7";
15
+ readonly version: "1.0.9";
16
16
  readonly description: "浙大宁波理工学院计算机协会";
17
17
  readonly fullDescription: "NBTCA Prompt - 极简命令行工具";
18
18
  readonly author: "m1ngsama <contact@m1ng.space>";
@@ -15,7 +15,7 @@ export const URLS = {
15
15
  };
16
16
  export const APP_INFO = {
17
17
  name: 'Prompt',
18
- version: '1.0.7',
18
+ version: '1.0.9',
19
19
  description: '浙大宁波理工学院计算机协会',
20
20
  fullDescription: 'NBTCA Prompt - 极简命令行工具',
21
21
  author: 'm1ngsama <contact@m1ng.space>',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nbtca/prompt",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -19,7 +19,7 @@ export const URLS = {
19
19
 
20
20
  export const APP_INFO = {
21
21
  name: 'Prompt',
22
- version: '1.0.7',
22
+ version: '1.0.9',
23
23
  description: '浙大宁波理工学院计算机协会',
24
24
  fullDescription: 'NBTCA Prompt - 极简命令行工具',
25
25
  author: 'm1ngsama <contact@m1ng.space>',