Skip to content

Conversation

@aslonnie
Copy link
Collaborator

for 2.52 release

Signed-off-by: Lonnie Liu <[email protected]>
@aslonnie aslonnie merged commit 78260b9 into releases/2.52.0 Nov 18, 2025
3 of 5 checks passed
@aslonnie aslonnie deleted the lonnie-251117-2520verchange branch November 18, 2025 05:02
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request updates the project version to 2.52.0 across various configuration and source files for the new release. The changes are consistent and correctly applied. I have one suggestion for the java/pom.xml file to remove a redundant property definition, which will improve the maintainability of the build configuration.

Comment on lines 63 to 67
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.version>2.0.0-SNAPSHOT</project.version>
<project.version>2.52.0</project.version>
</properties>
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

The <project.version> property is redundant here. Maven's built-in ${project.version} property automatically gets its value from the project's top-level <version> tag (line 8). Explicitly defining it again in the <properties> section is unnecessary. Removing this redundant definition will simplify the POM and ensure there is a single source of truth for the project version.

  <properties>
    <java.version>1.8</java.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants