From e628753e7dd1611fb4cf770a78126e96a02ab1d7 Mon Sep 17 00:00:00 2001 From: Simon Charette <charette.s@gmail.com> Date: Fri, 28 Jun 2013 15:33:20 -0400 Subject: [PATCH] [1.6.x] Added missing deprecation note for model permission methods. refs #20642. Backport of e1dd24d2f from master. --- docs/internals/deprecation.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index 9672746717..5513c79966 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -404,6 +404,9 @@ these changes. forms for ManyToMany model fields will not be performed by Django anymore either at the model or forms layer. +* The ``Model._meta.get_(add|change|delete)_permission`` methods will + be removed. + 2.0 ---