Skip to content

Commit fc86c0d

Browse files
committed
Prepare for 1.3 release
1 parent d7d6a48 commit fc86c0d

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGES.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
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+
116
Changes in 1.2.5
217
----------------
318

polymorphic_tree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# following PEP 440
2-
__version__ = "1.2.5"
2+
__version__ = "1.3"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)