Skip to content

Commit e3b2740

Browse files
committed
Upping version
1 parent fa5e5e8 commit e3b2740

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
### v2.0.0 (2018-01-17)
2+
3+
- Major restructuring of the codebase and the public API.
4+
- Added a ``TextFormatter`` class with several helper methods for formatting
5+
ASCII.
6+
- Added a ``GopherSessionInterface`` class in order to support flask sessions.
7+
- Added the ability to set the ``SERVER_NAME`` to an external URL.
8+
- Included a ``demo/`` directory with a complete example gopher server.
9+
- Several minor bugfixes and improvements.
10+
11+
112
### v1.0.0 (2018-01-07)
213

314
- First official release

flask_gopher/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.0'
1+
__version__ = '2.0.0'

setup.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,25 @@
44
55
A Flask extension to support the Gopher Protocol
66
"""
7-
from setuptools import setup
7+
import codecs
8+
import setuptools
89
from version import __version__ as version
910

1011

11-
setup(
12+
def long_description():
13+
with codecs.open('README.md', encoding='utf8') as f:
14+
return f.read()
15+
16+
17+
setuptools.setup(
1218
name='Flask-Gopher',
1319
version=version,
1420
url='https://github.com/michael-lazar/flask-gopher',
1521
license='GPL-3.0',
1622
author='Michael Lazar',
1723
author_email='lazar.michael22@gmail.com',
1824
description='A Flask extension to support the Gopher Protocol',
19-
long_description=__doc__,
25+
long_description=long_description(),
2026
packages=['flask_gopher'],
2127
zip_safe=False,
2228
include_package_data=True,

0 commit comments

Comments
 (0)