File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1+ Changes in 1.3
2+ --------------
3+
4+ * Added Django 1.10 support
5+ * Added convenient `get_closest_ancestor_of_type() ` and `get_ancestors_of_type() ` methods
6+ * Support proxy model filtering by django-polymorphic _ 1.0
7+ * Dropped Django 1.5 support / django-mptt 0.6 support.
8+
9+ .. note :: As of Django 1.10 managers of abstract classes are also inherited.
10+ Hence, the need to override ``_default_manager `` is removed.
11+ Use ``objects = YourPolymorphicMPTTManager() `` to override the manager now.
12+
13+ Make sure django-polymorphic _ 1.0 is installed for Django 1.10 projects.
14+
15+
116Changes in 1.2.5
217----------------
318
Original file line number Diff line number Diff line change 11# following PEP 440
2- __version__ = "1.2.5 "
2+ __version__ = "1.3 "
Original file line number Diff line number Diff line change @@ -45,16 +45,16 @@ def find_version(*parts):
4545 'future>=0.12.2' ,
4646 ],
4747 requires = [
48- 'Django (>=1.5 )' ,
48+ 'Django (>=1.6 )' ,
4949 ],
5050 description = "A polymorphic mptt structure to display content in a tree." ,
5151 long_description = read ('README.rst' ),
5252
5353 author = 'Diederik van der Boor' ,
5454 author_email = 'opensource@edoburu.nl' ,
5555
56- url = 'https://github.com/edoburu /django-polymorphic-tree' ,
57- download_url = 'https://github.com/edoburu /django-polymorphic-tree/zipball/master' ,
56+ url = 'https://github.com/django-polymorphic /django-polymorphic-tree' ,
57+ download_url = 'https://github.com/django-polymorphic /django-polymorphic-tree/zipball/master' ,
5858
5959 packages = find_packages (),
6060 include_package_data = True ,
You can’t perform that action at this time.
0 commit comments