Skip to content

Instantly share code, notes, and snippets.

View pandeyvinod's full-sized avatar
🏠
Working from home

Vinod pandeyvinod

🏠
Working from home
  • Remote
  • India
View GitHub Profile
@pandeyvinod
pandeyvinod / bumpversion.sh
Created October 1, 2020 17:42 — forked from pete-otaqui/bumpversion.sh
Bump a software project's VERSION, add the CHANGES, and tag with GIT
#!/bin/bash
# works with a file called VERSION in the current directory,
# the contents of which should be a semantic version number
# such as "1.2.3"
# this script will display the current version, automatically
# suggest a "minor" version update, and ask for input to use
# the suggestion, or a newly entered value.
@pandeyvinod
pandeyvinod / bump-version.sh
Created October 1, 2020 15:27 — forked from mareksuscak/bump-version.sh
Bump version shell script.
#!/bin/bash
# Thanks goes to @pete-otaqui for the initial gist:
# https://gist.github.com/pete-otaqui/4188238
#
# Original version modified by Marek Suscak
#
# works with a file called VERSION in the current directory,
# the contents of which should be a semantic version number
# such as "1.2.3" or even "1.2.3-beta+001.ab"