We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d097dea commit 1325febCopy full SHA for 1325feb
1 file changed
release.sh
@@ -19,12 +19,14 @@ sub='s/\(["'"'"']\)'"$old1"'["'"'"']/\1'"$new"'\1/'
19
sed -i~ -e '/version *=/'"$sub" python/setup.py
20
sed -i~ -e '/"version" *:/'"$sub" nodejs/package.json
21
22
-cd "$root"/python
+pushd "$root"/python
23
python setup.py sdist
24
twine upload dist/http_ece-"$new".tar.gz
25
+popd
26
-cd "$root"/nodejs
27
+pushd "$root"/nodejs
28
npm publish
29
30
31
git commit -m "Update version to $new" python/setup.py nodejs/package.json
-git tag v"$new"
32
+git tag -a v"$new" -m "Release version $new"
0 commit comments