Skip to content

Commit

Permalink
Release 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciuschiele committed Nov 18, 2015
1 parent d658c83 commit 6f42138
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
Changelog
---------

1.8.1
++++++++++++++++++
- Fixed issue that prevented installing the library

1.8.0
++++++++++++++++++
- Added String field
- Added a new customizable layer called Content Negotiation to selection of Parser and Renderer
- Added support to parameters on Content-Type and Accept headers
- Improved Enum field performance.
- Removed Encoders and Decoders in favor of Parser and Renderer

1.7.0
++++++++++++++++++
- Apache Licence has been replaced for MIT Licence
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

import sys
import os
import shlex

sys.path.insert(0, os.path.abspath('..'))
import flask_io
import setup


# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
Expand Down Expand Up @@ -54,15 +54,15 @@
# General information about the project.
project = 'Flask-IO'
copyright = '2015, Vinicius Chiele'
author = flask_io.__author__
author = setup.__author__

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
# The full version, including alpha/beta/rc tags.
version = release = flask_io.__version__
version = release = setup.__version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 0 additions & 4 deletions flask_io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,3 @@

from .io import FlaskIO
from .utils import Error

__version__ = '1.8.0'
__author__ = 'Vinicius Chiele'
__license__ = 'MIT'
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import flask_io

from setuptools import setup

__version__ = '1.8.1'
__author__ = 'Vinicius Chiele'
__license__ = 'MIT'

setup(
name='flask-io',
version=flask_io.__version__,
version=__version__,
packages=['flask_io'],
url='https://github.com/viniciuschiele/flask-io',
license=flask_io.__license__,
author=flask_io.__version__,
license=__license__,
author=__version__,
author_email='vinicius.chiele@gmail.com',
description='Flask-IO is a library for parsing Flask request arguments into parameters and for serialization of complex objects into Flask response.',
keywords=['flask', 'rest', 'parse', 'encode', 'decode', 'request', 'json', 'marshmallow'],
Expand Down

0 comments on commit 6f42138

Please sign in to comment.