From 3123e076b28cbf65a8f3ae65519a7d8faad492ec Mon Sep 17 00:00:00 2001 From: Delgan Date: Sun, 28 Nov 2021 14:51:52 +0100 Subject: [PATCH] Bump version to 1.0.4 --- README.md | 2 +- setup.py | 4 +++- win32_setctime.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 67296ab..5866b76 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # win32-setctime -[![Pypi version](https://img.shields.io/pypi/v/win32-setctime.svg)](https://pypi.python.org/pypi/win32-setctime) [![Python version](https://img.shields.io/badge/python-3.5%2B-blue.svg)](https://pypi.python.org/pypi/win32-setctime) [![Build status](https://img.shields.io/github/workflow/status/Delgan/win32-setctime/Tests/master)](https://github.com/Delgan/win32-setctime/actions/workflows/tests.yml?query=branch%3Amaster) [![License](https://img.shields.io/github/license/delgan/win32-setctime.svg)](https://github.com/Delgan/win32-setctime/blob/master/LICENSE) +[![Pypi version](https://img.shields.io/pypi/v/win32-setctime.svg)](https://pypi.python.org/pypi/win32-setctime) [![Python version](https://img.shields.io/badge/python-3.5%2B-blue.svg)](https://pypi.python.org/pypi/win32-setctime) [![Build status](https://img.shields.io/github/workflow/status/Delgan/win32-setctime/Tests/master)](https://github.com/Delgan/win32-setctime/actions/workflows/tests.yml?query=branch:master) [![License](https://img.shields.io/github/license/delgan/win32-setctime.svg)](https://github.com/Delgan/win32-setctime/blob/master/LICENSE) A small Python utility to set file creation time on Windows. diff --git a/setup.py b/setup.py index 05a3941..4e71a9a 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,10 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: CPython", ], extras_require={ diff --git a/win32_setctime.py b/win32_setctime.py index 21947d5..3af9ed2 100644 --- a/win32_setctime.py +++ b/win32_setctime.py @@ -36,7 +36,7 @@ SUPPORTED = os.name == "nt" -__version__ = "1.0.3" +__version__ = "1.0.4" __all__ = ["setctime"]