Skip to content
Merged
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
4 changes: 2 additions & 2 deletions third_party/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ pluginName = Dart
pluginId = Dart

# SemVer format -> https://semver.org
pluginVersion = 89.0
pluginVersion = 500.0

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The comment on line 9 indicates that pluginVersion should follow the SemVer format. To improve consistency and maintainability1, it's best to adhere to the specified format. The SemVer specification requires a MAJOR.MINOR.PATCH structure. The current value 500.0 is missing the patch version. To adhere to the standard, please update it to 500.0.0.

pluginVersion = 500.0.0

Style Guide References

Footnotes

  1. The style guide emphasizes consistency and maintainability. Using the correct SemVer format as declared in the file's comments aligns with these principles. (link)


# TODO(https://github.com/flutter/dart-intellij-third-party/issues/23) Add a changelog
# Not currently used in the build.gradle.kts file:
# pluginRepositoryUrl = https://github.com/flutter/dart-intellij-third-party

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 251
pluginUntilBuild = 251.*
pluginUntilBuild = 253.*

# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.13
Expand Down
Loading