diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index e8ec684..54c9376 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -1,14 +1,19 @@ Changelog ========= -2.0.0 +2.0.1 ~~~~~ -* Added ``sudo.views.SudoView`` class based view. This is now more extensable and +* Added ``sudo.views.SudoView`` class based view. This is now more extensible and should be preferred over the older ``sudo.views.sudo`` view function. * Removed ``SUDO_FORM`` setting. It's now suggested to subclass ``sudo.views.SudoView`` and override ``form_class``. * Added ``SUDO_URL`` setting to set the url for the sudo page. + +2.0.0 +~~~~~ +* Bad release. :( Don't install. + 1.3.0 ~~~~~ * Store ``redirect_to`` value in session. diff --git a/setup.py b/setup.py index 0a14400..d57d0d8 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -install_requires = ['Django'] +install_requires = [] tests_require = [ 'pytest', @@ -39,7 +39,7 @@ def run_tests(self): setup( name='django-sudo', - version='2.0.0', + version='2.0.1', author='Matt Robenolt', author_email='matt@ydekproductions.com', url='https://github.com/mattrobenolt/django-sudo',