From cffb69676fb6d048aa1b6017f08ddca01296971d Mon Sep 17 00:00:00 2001 From: Daniel Roy Greenfeld Date: Fri, 25 Oct 2024 11:32:58 +0100 Subject: [PATCH] Bump to 2.0 --- HISTORY.md | 4 +++- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 3c9d034..dc412f9 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,9 +1,11 @@ # History -## 2.0.0 (2024-??-??) +## 2.0.0 (2024-10-25) * Remove support for Python versions < 3.8 * Add formal support for Python versions up to 3.13 +* Switch to Markdown for docs +* Migrate from black to ruff ## 1.5.2 (2020-09-21) diff --git a/setup.py b/setup.py index dd58d17..64e5aed 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except ImportError: from distutils.core import setup -__version__ = "1.5.2" +__version__ = "2.0" def read(fname): @@ -38,7 +38,7 @@ def read(fname): version=__version__, description="A decorator for caching properties in classes.", long_description=readme + "\n\n" + history, - long_description_content_type="text/x-md", + long_description_content_type="text/text/markdown", author="Daniel Greenfeld", author_email="pydanny@gmail.com", url="https://github.com/pydanny/cached-property",