Skip to content

Commit

Permalink
Upping version
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-lazar committed Jan 17, 2018
1 parent fa5e5e8 commit e3b2740
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### v2.0.0 (2018-01-17)

- Major restructuring of the codebase and the public API.
- Added a ``TextFormatter`` class with several helper methods for formatting
ASCII.
- Added a ``GopherSessionInterface`` class in order to support flask sessions.
- Added the ability to set the ``SERVER_NAME`` to an external URL.
- Included a ``demo/`` directory with a complete example gopher server.
- Several minor bugfixes and improvements.


### v1.0.0 (2018-01-07)

- First official release
2 changes: 1 addition & 1 deletion flask_gopher/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.0'
__version__ = '2.0.0'
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,25 @@
A Flask extension to support the Gopher Protocol
"""
from setuptools import setup
import codecs
import setuptools
from version import __version__ as version


setup(
def long_description():
with codecs.open('README.md', encoding='utf8') as f:
return f.read()


setuptools.setup(
name='Flask-Gopher',
version=version,
url='https://github.com/michael-lazar/flask-gopher',
license='GPL-3.0',
author='Michael Lazar',
author_email='[email protected]',
description='A Flask extension to support the Gopher Protocol',
long_description=__doc__,
long_description=long_description(),
packages=['flask_gopher'],
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit e3b2740

Please sign in to comment.