user80805
user80805

Reputation: 6508

What does Bump Version stand for?

I saw this comment in git many times. What does it mean actually?

Upvotes: 416

Views: 183976

Answers (4)

Boost, pump up, bring up, ⸻the version.


The etymology for you.

https://www.dictionary.com/e/slang/bump

Likely emerging in the mid to late 1990s with the rise of online message boards, bump is popularly said to be a backronym for the phrase “bring up my post.” The term, however, may have also simply originated as an extension of the word bump (i.e., give something a bump, or boost.).

Upvotes: 35

Sebastian Sastre
Sebastian Sastre

Reputation: 2192

from: A successful Git branching model:

$ git checkout -b release-1.2 develop
Switched to a new branch "release-1.2"
$ ./bump-version.sh 1.2
Files modified successfully, version bumped to 1.2.
$ git commit -a -m "Bumped version number to 1.2"
[release-1.2 74d9424] Bumped version number to 1.2
1 files changed, 1 insertions(+), 1 deletions(-)

After creating a new branch and switching to it, we bump the version number. Here, bump-version.sh is a fictional shell script that changes some files in the working copy to reflect the new version. (This can of course be a manual change—the point being that some files change.) Then, the bumped version number is committed.

Upvotes: 90

Larry K
Larry K

Reputation: 49114

It means incrementing the current version number by 1.

Upvotes: 22

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799062

It means to increment the version number to a new, unique value.

Upvotes: 464

Related Questions