summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2023-04-24 00:24:48 +0200
committerGitHub <noreply@github.com>2023-04-24 00:24:48 +0200
commit7fa848126c8178e78c47dff0415a1fc175b041eb (patch)
tree4fb9818b6eb1346ce6396831819756ef9be6aedb /ChangeLog
parenta91a8d60ccd5ca8e5f8e162d67b3b93444105235 (diff)
downloadastroid-git-7fa848126c8178e78c47dff0415a1fc175b041eb.tar.gz
Remove cachedproperty decorator (#2140)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8b3d79f7..709b53ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,7 @@
astroid's ChangeLog
===================
-What's New in astroid 2.16.0?
+What's New in astroid 3.0.0?
=============================
Release date: TBA
@@ -10,9 +10,10 @@ Release date: TBA
Refs #2137
-* Remove ``@cached`` decorator (just use ``@cached_property`` from the stdlib).
+* Remove ``@cached`` and ``@cachedproperty`` decorator (just use ``@cached_property`` from the stdlib).
Closes #1780
+ Refs #2140
* Reduce file system access in ``ast_from_file()``.