From e3f1d19756aaf62276e3eff34c4c2a74ba95accc Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 15 Mar 2021 01:13:46 +0100 Subject: [PATCH] v0.9.8 --- README.md | 1 + copyparty/__version__.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 379758bb..c037c95d 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,7 @@ pip install black bandit pylint flake8 # vscode tooling in the `scripts` folder: * run `make -C deps-docker` to build all dependencies +* `git tag v1.2.3 && git push origin --tags` * create github release with `make-tgz-release.sh` * upload to pypi with `make-pypi-release.(sh|bat)` * create sfx with `make-sfx.sh` diff --git a/copyparty/__version__.py b/copyparty/__version__.py index c3ab121d..ca58a531 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 9, 7) +VERSION = (0, 9, 8) CODENAME = "the strongest music server" -BUILD_DT = (2021, 3, 8) +BUILD_DT = (2021, 3, 15) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)