Skip to content

Commit 8677b69

Browse files
authored
Changelog & Prettier for 1.0.23 (#296)
Added Changelog and run prettier for 1.0.23.
1 parent a0e6520 commit 8677b69

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the "vectorcastTestExplorer" extension will be documented in this file.
44

5+
## [1.0.23] - 2025-10-08
6+
7+
### Changed
8+
- Reorganized requirement representation in WebViews
9+
510
## [1.0.22] - 2025-10-07
611

712
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vectorcasttestexplorer",
33
"displayName": "VectorCAST Test Explorer",
44
"description": "VectorCAST Test Explorer for VS Code",
5-
"version": "1.0.22",
5+
"version": "1.0.23",
66
"license": "MIT",
77
"repository": {
88
"type": "git",

src/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2486,7 +2486,9 @@ async function generateRequirements(enviroPath: string) {
24862486
}
24872487
}
24882488

2489-
const config = vscode.workspace.getConfiguration("vectorcastTestExplorer.reqs2x");
2489+
const config = vscode.workspace.getConfiguration(
2490+
"vectorcastTestExplorer.reqs2x"
2491+
);
24902492
const generateHighLevelRequirements = config.get<boolean>(
24912493
"generateHighLevelRequirements",
24922494
false

0 commit comments

Comments
 (0)