We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b673b4 commit 2247450Copy full SHA for 2247450
release/prepare.sh
@@ -16,7 +16,7 @@ RELEASE=$1
16
export RELEASE="$RELEASE"
17
18
script_dir="$(dirname "${BASH_SOURCE[0]}")"
19
-root=$(dirname "$script_dir")
+root=$(cd "$script_dir/.." && pwd)
20
cd "$script_dir"
21
22
git fetch upstream
@@ -39,8 +39,10 @@ grep "$RELEASE" "$root/setup.py"
39
grep "$RELEASE" "$root/docs/src/conf.py"
40
grep "$RELEASE" "$root/gensim/__init__.py"
41
42
+set +e
43
git diff | cat
44
git commit -a -m "bumped version to $RELEASE"
45
+set -e
46
47
echo "Now update CHANGELOG.md and include the PRs in this release."
48
read -p "Press Enter to continue. An editor window will open."
0 commit comments