Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump SonarDelphi default version to 1.6.0 #41

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Changes in issue validity are now immediately reflected across the UI.
* The issue view has been redesigned for improved performance and utility.
* The settings interface has been redesigned, improving usability and reducing unnecessary network calls.
* The default SonarDelphi version is now [1.5.0](https://github.com/integrated-application-development/sonar-delphi/releases/tag/v1.5.0).
* The default SonarDelphi version is now [1.6.0](https://github.com/integrated-application-development/sonar-delphi/releases/tag/v1.6.0).
* Phrasing around manually choosing a Java executable has been changed to "Browse" instead of "Select override".

### 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.5.0';
Result := '1.6.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.5.0";
return "1.6.0";
}
}

Expand Down