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..f680785 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,9 +38,9 @@ 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", - author="Daniel Greenfeld", - author_email="pydanny@gmail.com", + long_description_content_type="text/markdown", + author="Daniel Roy Greenfeld", + author_email="daniel@feldroy.com", url="https://github.com/pydanny/cached-property", py_modules=["cached_property"], include_package_data=True,