Skip to content

Commit

Permalink
Bump SonarDelphi default version to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fourls committed Oct 10, 2024
1 parent 0ae580f commit 67e35fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

* Project Options now prevents a blank server URL or project key when in Connected Mode.
* The default SonarDelphi version is now [1.8.0](https://github.com/integrated-application-development/sonar-delphi/releases/tag/v1.8.0).
* The default SonarDelphi version is now [1.10.0](https://github.com/integrated-application-development/sonar-delphi/releases/tag/v1.10.0).

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion client/source/DelphiLint.Settings.pas
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function TLintSettings.GetJavaExe(Index: Integer): string;

function TLintSettings.GetDefaultSonarDelphiVersion: string;
begin
Result := '1.8.0';
Result := '1.10.0';
end;

//______________________________________________________________________________________________________________________
Expand Down
2 changes: 1 addition & 1 deletion companion/delphilint-vscode/src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function getSonarDelphiVersion(): string {
if (override) {
return override;
} else {
return "1.8.0";
return "1.10.0";
}
}

Expand Down

0 comments on commit 67e35fb

Please sign in to comment.