Release 0.5.4

master v0.5.4
Sebastian Lohff 1 year ago
parent 9784c82679
commit f668fc3fe6

@ -1,6 +1,17 @@
servefile changelog
===================
2023-01-23 v0.5.4
-----------------
0.5.4 released
* code reformatting for better maintainability
* upload to uploaddir instead of /tmp for large files
* add python3.10 / python3.11 support
* drop python3.6 support
2021-11-18 v0.5.3
-----------------

@ -1,4 +1,4 @@
.TH SERVEFILE 1 "November 2021" "servefile 0.5.3" "User Commands"
.TH SERVEFILE 1 "January 2023" "servefile 0.5.4" "User Commands"
.SH NAME
servefile \- small HTTP-Server for temporary file transfer

@ -7,7 +7,7 @@
from __future__ import print_function
__version__ = '0.5.3'
__version__ = '0.5.4'
import argparse
import base64

@ -11,7 +11,7 @@ setup(
long_description=long_description,
long_description_content_type='text/markdown',
platforms='posix',
version='0.5.3',
version='0.5.4',
license='GPLv3 or later',
url='https://github.com/sebageek/servefile/',
author='Sebastian Lohff',

@ -146,7 +146,7 @@ def _test_version(run_servefile, standalone):
version = s.stdout.readline().decode().strip()
# hardcode version as string until servefile is a module
assert version == 'servefile 0.5.3'
assert version == 'servefile 0.5.4'
def test_version(run_servefile):

Loading…
Cancel
Save