Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.5.0-SNAPSHOT #1350

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<description>SOFABoot Build</description>

<properties>
<revision>4.4.0</revision>
<revision>4.5.0-SNAPSHOT</revision>
Copy link

Choose a reason for hiding this comment

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

💡 Codebase verification

Version documentation needs to be updated

The version bump to 4.5.0-SNAPSHOT requires documentation updates. Based on the verification:

  1. No CHANGELOG.md file exists in the repository
  2. No version 4.5.0 references found in documentation files
  3. The version change appears only in pom.xml

Please:

  • Create or update CHANGELOG.md with the new version's changes
  • Update relevant documentation to reflect version 4.5.0
  • Consider adding release notes for the new features in this version
🔗 Analysis chain

Verify version bump documentation.

The version change from 4.4.0 to 4.5.0-SNAPSHOT indicates a new feature release. Please ensure:

  1. CHANGELOG.md is updated with the new version
  2. Release notes are prepared
  3. All module versions are consistent with this change

Let's search for version-related documentation and references to verify the version bump properly.

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Check for version-related files and their content
echo "Checking for version-related files..."
fd "CHANGELOG.md|RELEASE.md|README.md" -t f -x grep -l "4.5.0" {} \;

# Verify no hardcoded old versions remain in XML files
echo "Checking for any remaining old version references..."
rg "4\.4\.0" -t xml

Length of output: 856


Script:

#!/bin/bash
# Check for version-related files and their content
echo "Checking for CHANGELOG.md..."
fd "CHANGELOG.md" --type f --exec cat {}

echo -e "\nChecking version references in pom files..."
rg "4\.5\.0|4\.4\.0" -t xml

echo -e "\nChecking README.md for version info..."
fd "README.md" --type f --exec cat {}

Length of output: 14107

<sofa.boot.version>${revision}</sofa.boot.version>
<spring.boot.version>3.3.4</spring.boot.version>
<!--project-->
Expand Down
Loading