From 46e70d50b7c7bc3d2d1a31baf16dd3d87ef052bd Mon Sep 17 00:00:00 2001 From: ed Date: Sun, 10 Jan 2021 17:49:56 +0100 Subject: [PATCH] v0.7.0 --- README.md | 1 - copyparty/__version__.py | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5199f7f7..06643bde 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,6 @@ roughly sorted by priority * `os.copy_file_range` for up2k cloning * support pillow-simd * cache sha512 chunks on client -* persist unfinished up2k uploads too * comment field * ~~look into android thumbnail cache file format~~ bad idea * figure out the deal with pixel3a not being connectable as hotspot diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 5e1d8e31..2c6ee919 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (0, 6, 3) -CODENAME = "CHRISTMAAAAAS" -BUILD_DT = (2021, 1, 7) +VERSION = (0, 7, 0) +CODENAME = "keeping track" +BUILD_DT = (2021, 1, 10) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)