Skip to content

Commit

Permalink
Move to 0.8.1-SNAPSHOT
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
robstryker committed Nov 9, 2023
1 parent 67e0638 commit e10346f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ideaVersion=IC-2023.2.4
# build number ranges
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
sinceIdeaBuild=211
projectVersion=0.8.0.Final
projectVersion=0.8.1-SNAPSHOT
jetBrainsToken=invalid
jetBrainsChannel=stable
intellijPluginVersion=1.16.0
Expand Down
8 changes: 7 additions & 1 deletion upversionAndRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ read -p "Press enter to continue"


echo "Making a release on github for $finalVer"
commitMsgsClean=`git log --color --pretty=format:'%s' --abbrev-commit | head -n $commits | awk '{ print " * " $0;}' | awk '{printf "%s\\\\n", $0}' | sed 's/"/\\"/g'`
git log --color --pretty=format:'%s' --abbrev-commit | head -n $commits | awk '{ print " zzz " $0;}' | awk '{printf "%s\\\\n", $0}' | sed 's/"/\\"/g' > tmp1.txt
cat tmp1.txt | sed 's/zzz/\*/g' > tmp2.txt
commitMsgsClean="$(<tmp2.txt)"
rm tmp1.txt
rm tmp2.txt


createReleasePayload="{\"tag_name\":\"v$finalVer\",\"target_commitish\":\"$curBranch\",\"name\":\"$finalVer\",\"body\":\"Release of $finalVer:\n\n"$commitMsgsClean"\",\"draft\":false,\"prerelease\":false,\"generate_release_notes\":false}"

if [ "$debug" -eq 0 ]; then
Expand Down

0 comments on commit e10346f

Please sign in to comment.