Skip to content

Commit 2564e5e

Browse files
committed
Bump to 2.0
1 parent 83e14c3 commit 2564e5e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

HISTORY.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# History
22

3-
## 2.0.0 (2024-??-??)
3+
## 2.0.0 (2024-10-25)
44

55
* Remove support for Python versions < 3.8
66
* Add formal support for Python versions up to 3.13
7+
* Switch to Markdown for docs
8+
* Migrate from black to ruff
79

810
## 1.5.2 (2020-09-21)
911

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
except ImportError:
1010
from distutils.core import setup
1111

12-
__version__ = "1.5.2"
12+
__version__ = "2.0"
1313

1414

1515
def read(fname):
@@ -38,9 +38,9 @@ def read(fname):
3838
version=__version__,
3939
description="A decorator for caching properties in classes.",
4040
long_description=readme + "\n\n" + history,
41-
long_description_content_type="text/x-md",
42-
author="Daniel Greenfeld",
43-
author_email="pydanny@gmail.com",
41+
long_description_content_type="text/markdown",
42+
author="Daniel Roy Greenfeld",
43+
author_email="daniel@feldroy.com",
4444
url="https://github.com/pydanny/cached-property",
4545
py_modules=["cached_property"],
4646
include_package_data=True,

0 commit comments

Comments
 (0)