summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/chrome.svg
diff options
context:
space:
mode:
Diffstat (limited to 'src/qcam/assets/feathericons/chrome.svg')
0 files changed, 0 insertions, 0 deletions
span class="hl opt">! git diff-index --quiet HEAD; then echo "Tree must be clean to release." exit 1 fi # Identify current version components version=$(./utils/gen-version.sh) # Decide if we are here to bump major, minor, or patch release. case $1 in major|minor|patch) bump=$1; ;; *) echo "You must specify the version bump level: (major, minor, patch)" exit 1 ;; esac new_version=$(./utils/semver bump "$bump" "$version") echo "Bumping $bump" echo " Existing version is: $version" echo " New version is : $new_version" # Patch in the version to our meson.build sed -i -E "s/ version : '.*',/ version : '$new_version',/" meson.build # Commit the update git commit meson.build -esm "libcamera v$new_version" # Create a tag from that commit git show -s --format=%B | git tag "v$new_version" -s -F -