Skip to content

Commit

Permalink
Bump to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pydanny committed Oct 25, 2024
1 parent 83e14c3 commit 2564e5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
except ImportError:
from distutils.core import setup

__version__ = "1.5.2"
__version__ = "2.0"


def read(fname):
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 2564e5e

Please sign in to comment.