Skip to content

Commit

Permalink
Merge pull request #393 from fisuda/fix/maintenance_script
Browse files Browse the repository at this point in the history
Fix maintenance script
  • Loading branch information
fisuda committed Jun 9, 2024
2 parents b553745 + 6bee3f4 commit 1bc3828
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## FIWARE Big Bang v0.39.0-next

- Fix maintenance script (#393)

## FIWARE Big Bang v0.39.0 - 09 June, 2024

- Update Mongodb to 6.0 for Orion (#389)
Expand Down
2 changes: 2 additions & 0 deletions maintenance/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ sed -i -e "s/postfix:${VER_SED}/postfix:${VER_SED}-next/" config.sh
sed -i -e "s/zeppelin:${VER_SED}/zeppelin:${VER_SED}-next/" config.sh
sed -i -e "s/pwgen:${VER_SED}/pwgen:${VER_SED}-next/" config.sh

cp -a config.sh .config.sh

git add .
git commit -m "Bump: ${VER} -> ${VER}-next"
git push origin "release/${VER}_next"
Expand Down
4 changes: 4 additions & 0 deletions maintenance/version-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ version_up() {
sed -i -e "s/${OLD}-next/${NEW}-next/" "${FIBB_HOME}/.github/pull_request_template.md"
sed -i -e "s/${OLD}-next/${NEW}-next/" "${FIBB_HOME}/CONTRIBUTING.md"
sed -i -e "s/${OLD}/${NEW}/" "${FIBB_HOME}/SECURITY.md"

cp -a "${FIBB_HOME}/config.sh" "${FIBB_HOME}/.config.sh"

git add .
git commit -m "Bump: ${OLD}-next -> ${NEW}"
Expand Down Expand Up @@ -61,6 +63,8 @@ next_version() {
sed -i -e "s/zeppelin:${VER}/zeppelin:${VER}-next/" "${FIBB_HOME}/config.sh"
sed -i -e "s/pwgen:${VER}/pwgen:${VER}-next/" "${FIBB_HOME}/config.sh"

cp -a "${FIBB_HOME}/config.sh" "${FIBB_HOME}/.config.sh"

git add .
git commit -m "Bump: ${VER} -> ${VER}-next"
git push origin "${BRANCH}"
Expand Down

0 comments on commit 1bc3828

Please sign in to comment.