Skip to content

Commit 7d3f377

Browse files
authored
v0.2.6 (#128)
* Fix issue with self in lexer * Update links * Update Notice, clippy rules * Update dependencies * Update version * Fix issue with num ranges * Revert FileAdjustor * Update Clippy report reader, add new version * Fix issue with continue_* names * Fix sonarcloud issues * Add sonarcloud properties
1 parent 4eb9eba commit 7d3f377

File tree

143 files changed

+812
-342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+812
-342
lines changed

DOC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Installation
1010

11-
1. Download the [latest plugin JAR file](https://github.com/elegoff/sonar-rust/releases) and copy it into
11+
1. Download the [latest plugin JAR file](https://github.com/C4tWithShell/community-rust/releases) and copy it into
1212
the `extensions/plugins` folder of SonarQube
1313
2. Restart your SonarQube server
1414

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Community Rust Plugin
2-
Copyright (C) 2021-2024 Vladimir Shelkovnikov
2+
Copyright (C) 2021-2025 Vladimir Shelkovnikov
33
mailto:community-rust AT pm DOT me
44
http://github.com/C4tWithShell/community-rust
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manage code quality.
1313

1414
| SonarQube | Community Rust plugin |
1515
|-------------|-----------------------|
16-
| 10.7 | 0.2.5 |
16+
| 10.7 | 0.2.5 - 0.2.6 |
1717
| 10.4 - 10.6 | 0.2.3 - 0.2.4 |
1818
| 10.0 - 10.3 | 0.2.2 |
1919
| 9.9 LTS | 0.2.1 |
@@ -78,7 +78,7 @@ While I will no longer be actively maintaining the project, I am committed to en
7878

7979
In the coming weeks, I will work on facilitating a smooth transition process for the new maintainer(s). I will provide guidance on how to proceed with the transfer of ownership and offer support wherever needed.
8080

81-
Once again, thank you all for your incredible support and dedication to [Project Name]. It has been an honor and a privilege to serve as the project's maintainer, and I look forward to seeing it continue to grow and thrive in the future.
81+
Once again, thank you all for your incredible support and dedication to the SonarQube plugin for Rust. It has been an honor and a privilege to serve as the project's maintainer, and I look forward to seeing it continue to grow and thrive in the future.
8282

8383
Best regards,
8484

community-rust-checks/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.elegoff</groupId>
88
<artifactId>community-rust</artifactId>
9-
<version>0.2.5</version>
9+
<version>0.2.6</version>
1010
</parent>
1111

1212
<artifactId>community-rust-checks</artifactId>

community-rust-checks/src/main/java/org/elegoff/rust/checks/CheckList.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

community-rust-checks/src/main/java/org/elegoff/rust/checks/EmptyEnumCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

community-rust-checks/src/main/java/org/elegoff/rust/checks/FunctionParametersCountCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

community-rust-checks/src/main/java/org/elegoff/rust/checks/Issue.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

community-rust-checks/src/main/java/org/elegoff/rust/checks/LineLengthCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

community-rust-checks/src/main/java/org/elegoff/rust/checks/RustCheck.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/**
1+
/*
22
* Community Rust Plugin
3-
* Copyright (C) 2021-2024 Vladimir Shelkovnikov
3+
* Copyright (C) 2021-2025 Vladimir Shelkovnikov
44
* mailto:community-rust AT pm DOT me
55
* http://github.com/C4tWithShell/community-rust
66
*

0 commit comments

Comments
 (0)