Bump to v2.0.1
parent
c56d22b5b8
commit
d36f55a58f
36
AUTHORS.rst
36
AUTHORS.rst
|
|
@ -3,33 +3,67 @@ Main authors (commit rights to the main repository)
|
||||||
|
|
||||||
* Chris Glass
|
* Chris Glass
|
||||||
* Diederik van der Boor
|
* Diederik van der Boor
|
||||||
|
* Charlie Denton
|
||||||
|
* Jerome Leclanche
|
||||||
|
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
=============
|
=============
|
||||||
|
|
||||||
* Abel Daniel
|
* Abel Daniel
|
||||||
|
* Adam Chainz
|
||||||
* Adam Wentz
|
* Adam Wentz
|
||||||
* Andrew Ingram (contributed setup.py)
|
* Andrew Ingram (contributed setup.py)
|
||||||
|
* Al Johri
|
||||||
|
* Alex Alvarez
|
||||||
|
* Andrew Dodd
|
||||||
|
* Angel Velasquez
|
||||||
|
* Austin Matsick
|
||||||
* Ben Konrath
|
* Ben Konrath
|
||||||
|
* Bert Constantin
|
||||||
* Bertrand Bordage
|
* Bertrand Bordage
|
||||||
* Chad Shryock
|
* Chad Shryock
|
||||||
* Charles Leifer (python 2.4 compatibility)
|
* Charles Leifer (python 2.4 compatibility)
|
||||||
|
* Chris Barna
|
||||||
|
* Chris Brantley
|
||||||
|
* Christopher Glass
|
||||||
* David Sanders
|
* David Sanders
|
||||||
|
* Éric Araujo
|
||||||
* Evan Borgstrom
|
* Evan Borgstrom
|
||||||
|
* Frankie Dintino
|
||||||
* Gavin Wahl
|
* Gavin Wahl
|
||||||
* Germán M. Bravo
|
* Germán M. Bravo
|
||||||
|
* Gonzalo Bustos
|
||||||
|
* Gregory Avery-Weir
|
||||||
* Hugo Osvaldo Barrera
|
* Hugo Osvaldo Barrera
|
||||||
* Jacob Rief
|
* Jacob Rief
|
||||||
|
* James Murty
|
||||||
* Jedediah Smith (proxy models support)
|
* Jedediah Smith (proxy models support)
|
||||||
* Jerome Leclanche
|
|
||||||
* John Furr
|
* John Furr
|
||||||
|
* Jonas Haag
|
||||||
* Jonas Obrist
|
* Jonas Obrist
|
||||||
* Julian Wachholz
|
* Julian Wachholz
|
||||||
|
* Kamil Bar
|
||||||
|
* Kelsey Gilmore-Innis
|
||||||
* Kevin Armenat
|
* Kevin Armenat
|
||||||
|
* Krzysztof Gromadzki
|
||||||
|
* Krzysztof Nazarewski
|
||||||
|
* Luis Zárate
|
||||||
* Marius Lueck
|
* Marius Lueck
|
||||||
* Martin Brochhaus
|
* Martin Brochhaus
|
||||||
|
* Martin Maillard
|
||||||
|
* Michael Fladischer
|
||||||
|
* Nick Ward
|
||||||
|
* Oleg Myltsyn
|
||||||
|
* Omer Strumpf
|
||||||
|
* Paweł Adamczak
|
||||||
|
* Petr Dlouhý
|
||||||
|
* Sander van Leeuwen
|
||||||
|
* Sobolev Nikita
|
||||||
|
* Tadas Dailyda
|
||||||
|
* Tai Lee
|
||||||
* Tomas Peterka
|
* Tomas Peterka
|
||||||
|
* Tony Narlock
|
||||||
* Vail Gold
|
* Vail Gold
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,19 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
Changes in 2.0.1 (2018-02-05)
|
||||||
|
-----------------------------
|
||||||
|
|
||||||
|
* Fixed manager inheritance detection for Django 1.11.
|
||||||
|
|
||||||
|
It's recommended to use ``Meta.manager_inheritance_from_future`` so Django 1.x code also inherits
|
||||||
|
the ``PolymorphicManager`` in all subclasses. Django 2.0 already does this by default.
|
||||||
|
This restores the manager inheritance behavior that *django-polymorphic 1.3* enforced for Django 1.x projects.
|
||||||
|
|
||||||
|
* Deprecated the ``base_objects`` manager. Use ``objects.non_polymorphic()`` instead.
|
||||||
|
* Fixed test management commands
|
||||||
|
|
||||||
|
|
||||||
Changes in 2.0 (2018-01-22)
|
Changes in 2.0 (2018-01-22)
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -61,9 +61,9 @@ copyright = u'2013, Bert Constantin, Chris Glass, Diederik van der Boor'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '2.0'
|
version = '2.0.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '2.0'
|
release = '2.0.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = django-polymorphic
|
name = django-polymorphic
|
||||||
version = 2.0
|
version = 2.0.1
|
||||||
description = Seamless polymorphic inheritance for Django models
|
description = Seamless polymorphic inheritance for Django models
|
||||||
long_description = file:README.rst
|
long_description = file:README.rst
|
||||||
author = Bert Constantin
|
author = Bert Constantin
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue