From bd9183afe9bc168f8c38eeb88b0fa9db436d0a43 Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Mon, 31 Jul 2017 14:19:58 -0400 Subject: [PATCH] v1.3.1 --- CHANGES.rst | 8 +++++++- setup.py | 11 ++++------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 720e6d8..a70b477 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changes ======= +Version 1.3.1 -- 2017/07/31 +--------------------------- + +* Throw ``WindowsError`` instead of ``OSError`` in ``plat_win``. (#7) +* Fix ``TypeError`` on python 2 in ``plat_other``. (#12) + Version 1.3.0 -- 2013/07/19 --------------------------- @@ -30,4 +36,4 @@ Version 1.0.1 -- 2010/04/19 Version 1.0.0 -- 2010/04/07 --------------------------- -* Initial Release \ No newline at end of file +* Initial Release diff --git a/setup.py b/setup.py index 01db83b..65f2061 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,3 @@ -import sys -import os.path as op - from setuptools import setup CLASSIFIERS = [ @@ -19,14 +16,14 @@ LONG_DESCRIPTION = open('README.rst', 'rt').read() + '\n\n' + open('CHANGES.rst' setup( name='Send2Trash', - version='1.3.0', - author='Hardcoded Software', + version='1.3.1', + author='Virgil Dupras', author_email='hsoft@hardcoded.net', packages=['send2trash'], scripts=[], - url='http://github.com/hsoft/send2trash', + url='https://github.com/hsoft/send2trash', license='BSD License', description='Send file to trash natively under Mac OS X, Windows and Linux.', long_description=LONG_DESCRIPTION, classifiers=CLASSIFIERS, -) \ No newline at end of file +)