Skip to content

Commit

Permalink
DelphiLint 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fourls committed Mar 19, 2024
1 parent 2df0fb1 commit ceaa922
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2024-03-19

### Added

* Support for the [`requiredForLanguages` plugin metadata property](https://community.sonarsource.com/t/the-sonarscanners-download-only-required-3rd-party-plugins/108156)
Expand Down Expand Up @@ -190,7 +192,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
resolved issue retrieval.
* Support for reading `sonar-project.properties`.

[unreleased]: https://github.com/integrated-application-development/delphilint/compare/v0.7.0...HEAD
[unreleased]: https://github.com/integrated-application-development/delphilint/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/integrated-application-development/delphilint/compare/v0.7.0...v1.0.0
[0.7.0]: https://github.com/integrated-application-development/delphilint/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/integrated-application-development/delphilint/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/integrated-application-development/delphilint/compare/v0.4.1...v0.5.0
Expand Down
6 changes: 3 additions & 3 deletions client/source/dlversion.inc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const
CDlMajorVersion: Integer = {MAJOR}0{/MAJOR};
CDlMinorVersion: Integer = {MINOR}7{/MINOR};
CDlMajorVersion: Integer = {MAJOR}1{/MAJOR};
CDlMinorVersion: Integer = {MINOR}0{/MINOR};
CDlPatchVersion: Integer = {PATCH}0{/PATCH};
CDlIsDevVersion: Boolean = {DEV}True{/DEV};
CDlIsDevVersion: Boolean = {DEV}False{/DEV};
CDlCommit: string = {COMMIT}'unversioned'{/COMMIT};
2 changes: 1 addition & 1 deletion companion/delphilint-vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://www.integradev.com.au/"
},
"license": "LGPL-3.0-or-later",
"version": "0.7.0+dev",
"version": "1.0.0",
"preview": true,
"engines": {
"vscode": "^1.54.0"
Expand Down
2 changes: 1 addition & 1 deletion server/delphilint-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>au.com.integradev.delphilint</groupId>
<artifactId>delphilint-parent</artifactId>
<version>0.7.0+dev.${revision}</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>au.com.integradev.delphilint</groupId>
<artifactId>delphilint-parent</artifactId>
<version>0.7.0+dev.${revision}</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion server/sonarlint-core-overrides/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>au.com.integradev.delphilint</groupId>
<artifactId>delphilint-parent</artifactId>
<version>0.7.0+dev.${revision}</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0+dev.#
1.0.0

0 comments on commit ceaa922

Please sign in to comment.