summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-04-01 00:28:25 -0400
committerJacob Walls <jacobtylerwalls@gmail.com>2023-04-01 11:31:58 -0400
commitc7b2be1c137847fa78df6d6bf7a1e2f75f0577d6 (patch)
treec97d1adc401e09164b66a49db4cdaa4907284c3b /ChangeLog
parent52b2a13b30caf620cd6743dd696972c373df6308 (diff)
downloadastroid-git-c7b2be1c137847fa78df6d6bf7a1e2f75f0577d6.tar.gz
Remove `cached` decorator
Use `@cached_property` from the stdlib
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 216553c2..82a95b32 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,9 @@ What's New in astroid 2.16.0?
=============================
Release date: TBA
+* Remove ``@cached`` decorator (just use ``@cached_property`` from the stdlib).
+
+ Closes #1780
What's New in astroid 2.15.2?