mirror of
https://github.com/arsenetar/send2trash.git
synced 2024-12-21 10:59:03 +00:00
Update version for 1.8.0 release
This commit is contained in:
parent
d249f0106b
commit
484913ba0f
@ -1,5 +1,13 @@
|
|||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
Version 1.8.0 -- 2021/08/08
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
* Add compatibility with pathlib paths (#49)
|
||||||
|
* Fix thread compatibility of modern windows implementation (#59)
|
||||||
|
* Fix handling of UNC names in legacy windows implementation (#57)
|
||||||
|
|
||||||
Version 1.7.1 -- 2021/06/21
|
Version 1.7.1 -- 2021/06/21
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
3
setup.py
3
setup.py
@ -24,7 +24,7 @@ with open("README.rst", "rt") as f1, open("CHANGES.rst", "rt") as f2:
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="Send2Trash",
|
name="Send2Trash",
|
||||||
version="1.7.1",
|
version="1.8.0",
|
||||||
author="Andrew Senetar",
|
author="Andrew Senetar",
|
||||||
author_email="arsenetar@voltaicideas.net",
|
author_email="arsenetar@voltaicideas.net",
|
||||||
packages=["send2trash"],
|
packages=["send2trash"],
|
||||||
@ -34,6 +34,7 @@ setup(
|
|||||||
license="BSD License",
|
license="BSD License",
|
||||||
description="Send file to trash natively under Mac OS X, Windows and Linux.",
|
description="Send file to trash natively under Mac OS X, Windows and Linux.",
|
||||||
long_description=LONG_DESCRIPTION,
|
long_description=LONG_DESCRIPTION,
|
||||||
|
long_description_content_type="text/x-rst",
|
||||||
classifiers=CLASSIFIERS,
|
classifiers=CLASSIFIERS,
|
||||||
extras_require={
|
extras_require={
|
||||||
"win32": ['pywin32; sys_platform == "win32"'],
|
"win32": ['pywin32; sys_platform == "win32"'],
|
||||||
|
Loading…
Reference in New Issue
Block a user