diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 9268b1bb..120c3cac 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,6 +1,6 @@ # coding: utf-8 -VERSION = (0, 8, 0) +VERSION = (0, 8, 1) CODENAME = "keeping track" BUILD_DT = (2021, 2, 22) diff --git a/scripts/make-pypi-release.sh b/scripts/make-pypi-release.sh index 6a568051..7ede6f7b 100755 --- a/scripts/make-pypi-release.sh +++ b/scripts/make-pypi-release.sh @@ -86,6 +86,8 @@ function have() { python -c "import $1; $1; $1.__version__" } +mv copyparty/web/deps/marked.full.js.gz srv/ || true + . buildenv/bin/activate have setuptools have wheel diff --git a/scripts/make-tgz-release.sh b/scripts/make-tgz-release.sh index 65765bb4..c3047c01 100755 --- a/scripts/make-tgz-release.sh +++ b/scripts/make-tgz-release.sh @@ -35,6 +35,8 @@ ver="$1" exit 1 } +mv copyparty/web/deps/marked.full.js.gz srv/ || true + mkdir -p dist zip_path="$(pwd)/dist/copyparty-$ver.zip" tgz_path="$(pwd)/dist/copyparty-$ver.tar.gz"