Skip to content

Commit 6c7d91e

Browse files
committed
Updating all changed files during process, so also child pom.xml will update
1 parent 406cb3b commit 6c7d91e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v10 - 03/12/2025
4+
- Updating all changed files during process, so also child pom.xml will update
5+
36
## v9 - 07/13/2023
47

58
- New parameter (`auto-version-bump-mode`) to set a mode different then `auto` for auto-bump, so on auto bump we can select which mode we want(major, minor, patch) without add it into the PR Comment

src/version-bump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ else
9797
elif [ "${REPO_SYSTEM}" = "GRADLE" ]; then
9898
sed -i "s/\(version *= *['\"]*\)${OLD_VERSION}\(['\"]*\)/\1${NEW_VERSION}\2/" ${BUILD_FILE}
9999
fi
100-
git add $BUILD_FILE
100+
git add -A
101101
git commit -m "Bump version from $OLD_VERSION to $NEW_VERSION"
102102
if [[ "${BUMP_MODE}" == "auto" ]] && [[ "${AUTO_RELEASE}" == "false" ]]; then
103103
echo "Doing no new tag for this bump because its disabled for auto mode"

0 commit comments

Comments
 (0)