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)