Skip to content

Commit c7c8b3c

Browse files
authored
Merge pull request #2700 from simonbaird/bump-minor-version-to-08
Bump main branch version to 0.8
2 parents 8d3f4e5 + eeabb99 commit c7c8b3c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ debug-version:
371371

372372
# It's not so hard to do this by hand, but let's save some typing
373373
bump-minor-version:
374-
@yq ". + 0.1" -i $(VERSION_FILE) && \
374+
@yq '(((. * 10) + 1) / 10)' -i $(VERSION_FILE) && \
375375
git add $(VERSION_FILE) && \
376376
git commit $(VERSION_FILE) \
377377
-m "Bump minor version to $$(cat $(VERSION_FILE))" \

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7
1+
0.8

hack/cut-release.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ git fetch upstream
6262
git push upstream refs/remotes/upstream/main:refs/heads/${BRANCH_NAME}
6363
git checkout -b ${BRANCH_NAME} upstream/${BRANCH_NAME}
6464
65+
$(nice_title Bump version in main branch)
66+
67+
Run `make bump-minor-version` in main branch and make a PR for that.
68+
6569
$(nice_title Create a PR in for konflux-release-data)
6670
6771
This repo: https://gitlab.cee.redhat.com/releng/konflux-release-data/

0 commit comments

Comments
 (0)