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 93c2bd6 commit e3f1d19Copy full SHA for e3f1d19
README.md
@@ -212,6 +212,7 @@ pip install black bandit pylint flake8 # vscode tooling
212
in the `scripts` folder:
213
214
* run `make -C deps-docker` to build all dependencies
215
+* `git tag v1.2.3 && git push origin --tags`
216
* create github release with `make-tgz-release.sh`
217
* upload to pypi with `make-pypi-release.(sh|bat)`
218
* create sfx with `make-sfx.sh`
copyparty/__version__.py
@@ -1,8 +1,8 @@
1
# coding: utf-8
2
3
-VERSION = (0, 9, 7)
+VERSION = (0, 9, 8)
4
CODENAME = "the strongest music server"
5
-BUILD_DT = (2021, 3, 8)
+BUILD_DT = (2021, 3, 15)
6
7
S_VERSION = ".".join(map(str, VERSION))
8
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
0 commit comments