Skip to content

Commit 6103901

Browse files
committed
bumped version number, updated changelog
1 parent d0bfb53 commit 6103901

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## [1.3.1] - 2025-07-11
4+
- Fix bug with negative column number in range vscode ([#2](https://github.com/JustusRijke/Cppcheck-Lite/pull/2))
5+
36
## [1.3.0] - 2025-05-28
47
- Added <none> option to `cppcheck-lite.standard`, allowing users to specify it manually via `cppcheck-lite.arguments` or let `cppcheck` use its default setting.
58
- Improved Windows compatibility by quoting paths and normalizing backslashes in executable and file paths.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cppcheck-lite",
33
"displayName": "Cppcheck Lite",
44
"description": "A minimalistic VS Code extension that runs cppcheck on C/C++ files upon save and shows issues in the Problems panel.",
5-
"version": "1.3.0",
5+
"version": "1.3.1",
66
"engines": {
77
"vscode": "^1.96.0"
88
},

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ async function runCppcheck(
163163

164164
const range = new vscode.Range(line, col, line, col);
165165
const diagnostic = new vscode.Diagnostic(range, message, diagSeverity);
166-
diagnostic.code = standard !== "<none>" ? standard : "";;
166+
diagnostic.code = standard !== "<none>" ? standard : "";
167167

168168
diagnostics.push(diagnostic);
169169
}

0 commit comments

Comments
 (0)