Skip to content

Commit

Permalink
Release v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sebageek committed Nov 17, 2021
1 parent 413ea76 commit c7af203
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
servefile changelog
===================

2021-11-18 v0.5.3
-----------------

0.5.3 released

* improved test performance


2021-09-08 v0.5.2
-----------------
Expand Down
2 changes: 1 addition & 1 deletion servefile.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH SERVEFILE 1 "September 2021" "servefile 0.5.2" "User Commands"
.TH SERVEFILE 1 "November 2021" "servefile 0.5.3" "User Commands"

.SH NAME
servefile \- small HTTP-Server for temporary file transfer
Expand Down
2 changes: 1 addition & 1 deletion servefile/servefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from __future__ import print_function

__version__ = '0.5.2'
__version__ = '0.5.3'

import argparse
import base64
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
long_description=long_description,
long_description_content_type='text/markdown',
platforms='posix',
version='0.5.2',
version='0.5.3',
license='GPLv3 or later',
url='https://github.com/sebageek/servefile/',
author='Sebastian Lohff',
Expand Down
2 changes: 1 addition & 1 deletion tests/test_servefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2'
assert version == 'servefile 0.5.3'


def test_version(run_servefile):
Expand Down

0 comments on commit c7af203

Please sign in to comment.