Skip to content

Commit

Permalink
Release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebageek committed Sep 29, 2020
1 parent f2594c2 commit 11a7d8b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ servefile changelog
===================


2020-10-30 v0.5.1
-----------------

0.5.1 released

* version bump for broken pypi release


2020-10-29 v0.5.0
-----------------

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 2020" "servefile 0.5.0" "User Commands"
.TH SERVEFILE 1 "September 2020" "servefile 0.5.1" "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.0'
__version__ = '0.5.1'

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.0',
version='0.5.1',
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 @@ -104,7 +104,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.0'
assert version == 'servefile 0.5.1'


def test_version(run_servefile):
Expand Down

0 comments on commit 11a7d8b

Please sign in to comment.