File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -20,4 +20,3 @@ targets:
2020 source : ghcr.io/getsentry/vroom
2121 target : getsentry/vroom
2222 targetFormat : ' {{{target}}}:latest'
23- preReleaseCommand : " "
Original file line number Diff line number Diff line change 143143- Buffer flamegraph candidates to reduce memory usage. ([ #583 ] ( https://github.com/getsentry/vroom/pull/583 ) )
144144- Reduce read jobs buffer to reduce memory usage. ([ #584 ] ( https://github.com/getsentry/vroom/pull/584 ) )
145145- Update GoCD scripts to use console script entry points. ([ #608 ] ( https://github.com/getsentry/vroom/pull/608 ) )
146+ - Fix Craft's changelog bump entry. ([ #640 ] ( https://github.com/getsentry/vroom/pull/640 ) )
146147
147148## 23.12.0
148149
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -euo pipefail
3+
4+ if [ " $( uname -s) " != " Linux" ]; then
5+ echo " Vroom can only be released on Linux!"
6+ echo " Please use the GitHub Action instead."
7+ exit 1
8+ fi
9+
10+ SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
11+ cd $SCRIPT_DIR /..
12+
13+ OLD_VERSION=" ${1} "
14+ NEW_VERSION=" ${2} "
15+
16+ echo " Current version: ${OLD_VERSION} "
17+ echo " Bumping version: ${NEW_VERSION} "
You can’t perform that action at this time.
0 commit comments