From 2f7262e49e26faa4ee153f374f51858d19b5000a Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Mon, 27 Jul 2020 20:22:42 +0200 Subject: [PATCH] Version 0.8.0 --- README.rst | 5 +++++ setup.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 6fc1589..29ce898 100644 --- a/README.rst +++ b/README.rst @@ -97,6 +97,11 @@ Or you can use depot with SQLAlchemy to store attachments:: ChangeLog --------- +0.8.0 +~~~~~ + +- Replaced ``unidecode`` dependency with ``anyascii`` to better cope with MIT License. + 0.7.1 ~~~~~ diff --git a/setup.py b/setup.py index 1482be3..99a8cff 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os, sys -version = '0.7.1' +version = '0.8.0' here = os.path.abspath(os.path.dirname(__file__)) try: @@ -47,7 +47,7 @@ ], keywords='storage files s3 gridfs mongodb aws sqlalchemy wsgi', author='Alessandro Molina', - author_email='alessandro.molina@axant.it', + author_email='amol@turbogears.org', url='https://github.com/amol-/depot', license='MIT', packages=find_packages(exclude=['ez_setup', 'tests']),