Update version numbers in common.props#24943
Conversation
There was a problem hiding this comment.
Pull request overview
This pull request updates the version numbers in common.props for the ABP Framework, transitioning from release candidate versions (10.2.0-rc.1 / 5.2.0-rc.1) to preview versions (10.3.0-preview / 5.3.0-preview). However, there is a critical formatting error in the main version string.
Changes:
- Update
Versionproperty from10.2.0-rc.1to10.3.0-preview- - Update
LeptonXVersionproperty from5.2.0-rc.1to5.3.0-preview
| <LangVersion>latest</LangVersion> | ||
| <Version>10.2.0-rc.1</Version> | ||
| <LeptonXVersion>5.2.0-rc.1</LeptonXVersion> | ||
| <Version>10.3.0-preview-</Version> |
There was a problem hiding this comment.
The version string ends with a trailing hyphen: '10.3.0-preview-'. This is a malformed version string. Based on the codebase conventions, preview versions should either be formatted as '-rc.x' (e.g., '10.3.0-rc.1') or '-preview' (e.g., '10.3.0-preview'). The trailing hyphen without a suffix will likely cause issues with NuGet package versioning and version comparisons. Remove the trailing hyphen or add the appropriate suffix.
| <Version>10.3.0-preview-</Version> | |
| <Version>10.3.0-preview</Version> |
No description provided.