From c7236722f49e21a0a5538090fc594364ee09b24d Mon Sep 17 00:00:00 2001 From: Elliot Hillary Date: Tue, 17 Dec 2024 14:38:46 +1100 Subject: [PATCH] Bump SonarDelphi default version to 1.12.1 --- CHANGELOG.md | 1 + client/source/DelphiLint.Settings.pas | 2 +- companion/delphilint-vscode/src/settings.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b6e6e61..de77f904 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Highlight.js has been updated to 11.10.0, improving rule description syntax highlighting for numeric literals and character strings. +* The default SonarDelphi version is now [1.12.1](https://github.com/integrated-application-development/sonar-delphi/releases/tag/v1.12.1). ### Fixed diff --git a/client/source/DelphiLint.Settings.pas b/client/source/DelphiLint.Settings.pas index 79b7b83f..92551017 100644 --- a/client/source/DelphiLint.Settings.pas +++ b/client/source/DelphiLint.Settings.pas @@ -175,7 +175,7 @@ function TLintSettings.GetJavaExe(Index: Integer): string; function TLintSettings.GetDefaultSonarDelphiVersion: string; begin - Result := '1.10.0'; + Result := '1.12.1'; end; //______________________________________________________________________________________________________________________ diff --git a/companion/delphilint-vscode/src/settings.ts b/companion/delphilint-vscode/src/settings.ts index a7f52fa0..f1bd0e0d 100644 --- a/companion/delphilint-vscode/src/settings.ts +++ b/companion/delphilint-vscode/src/settings.ts @@ -129,7 +129,7 @@ export function getSonarDelphiVersion(): string { if (override) { return override; } else { - return "1.10.0"; + return "1.12.1"; } }