forked from coral-xyz/anchor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version-bump.sh
executable file
·52 lines (37 loc) · 1.48 KB
/
version-bump.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
set -e
if [ $# -eq 0 ]; then
echo "Usage $0 VERSION"
exit 1
fi
version=$1
echo "Bumping versions to $version"
# GNU/BSD compat
sedi=(-i)
case "$(uname)" in
# For macOS, use two parameters
Darwin*) sedi=(-i "")
esac
# Don't replace version with the following globs
skip_globs=":!**/yarn.lock :!Cargo.lock :!package.json :!tests/bench/bench.json :!bench/*.md"
git grep -l $(cat VERSION) -- $skip_globs |
xargs sed "${sedi[@]}" \
-e "s/$(cat VERSION)/$version/g"
# Potential for collisions in package.json files, handle those separately
# Replace only matching "version": "x.xx.x" and "@coral-xyz/anchor": "x.xx.x"
git grep -l $(cat VERSION) -- '**/package.json' | \
xargs sed "${sedi[@]}" \
-e "s/@coral-xyz\/anchor\": \"$(cat VERSION)\"/@coral-xyz\/anchor\": \"$version\"/g" \
-e "s/\"version\": \"$(cat VERSION)\"/\"version\": \"$version\"/g"
# Potential for collisions in Cargo.lock, use cargo update to update it
cargo update --workspace
# Insert version number into CHANGELOG.md
sed "${sedi[@]}" -e "s/## \[Unreleased\]/## [Unreleased]\n\n## [$version] - $(date '+%Y-%m-%d')/g" CHANGELOG.md
pushd ts && yarn && popd
pushd tests && yarn && popd
pushd examples && yarn && pushd tutorial && yarn && popd && popd
# Bump benchmark files
pushd tests/bench && anchor run bump-version -- --anchor-version $version && popd
echo $version > VERSION
echo "$(git diff --stat | tail -n1) files modified"
echo " $(cat VERSION) changeset generated, commit and tag"