From 5396f0cff5b7d3f4f057ce2f32e95693795d9b32 Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Wed, 19 Aug 2020 17:30:31 -0500 Subject: [PATCH 1/2] Prepare for 1.4.7 release --- AUTHORS.rst | 20 +++++++++++++++++--- changelog.rst | 8 ++++++++ setup.py | 8 +++++--- 3 files changed, 30 insertions(+), 6 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 635c195..b2af078 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,13 +7,25 @@ ago in the Django world. It keeps running because of the contributions of volunteers. Thank you to everyone who uses django-nose, keeps your projects up-to-date, files detailed bugs, and submits patches. -Maintainers ------------ +Project Leads +------------- +* John Whitlock (`jwhitlock `_) + +This is a `Jazzband `_ project, supported by the members, +who agree to abide by the +`Contributor Code of Conduct `_ and follow the +`guidelines `_. +If you'd like to become a project lead, please take a look at the +`Releases documentation `_ and reach out to us. + +Emeritus Maintainers +-------------------- +Thank you for years of maintaining this project! + * Jeff Balogh (`jbalogh `_) * Erik Rose (`erikrose `_) * James Socol (`jscol `_) * Rob Hudson (`robhudson `_) -* John Whitlock (`jwhitlock `_) Contributors ------------ @@ -31,6 +43,7 @@ These non-maintainers have contributed code to a django-nose release: * Conrado Buhrer (`conrado `_) * David Baumgold (`singingwolfboy `_) * David Cramer (`dcramer `_) +* Dillon Lareau (`dlareau `_) * Dmitry Gladkov (`dgladkov `_) * Ederson Mota (`edrmp `_) * Eric Zarowny (`ezarowny `_) @@ -38,6 +51,7 @@ These non-maintainers have contributed code to a django-nose release: * Fred Wenzel (`fwenzel `_) * Fábio Santos (`fabiosantoscode `_) * Ionel Cristian Mărieș (`ionelmc `_) +* Jannis Leidel (`jezdez `_) * Jeremy Satterfield (`jsatt `_) * Johan Euphrosine (`proppy `_) * Kyle Robertson (`dvelyk `_) diff --git a/changelog.rst b/changelog.rst index d0442ca..6442f5f 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,14 @@ Changelog --------- +1.4.7 (2020-08-19) +~~~~~~~~~~~~~~~~~~ +* Document Django 2.2 support, no changes needed +* Move project to `Jazzband.co `_ +* Fix fixture loading on MySQL + (`issue 307 `_, + `dlareau `_) + 1.4.6 (2018-10-03) ~~~~~~~~~~~~~~~~~~ * Document Django 2.0 and 2.1 support, no changes needed diff --git a/setup.py b/setup.py index 3632c99..2a14a45 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- """django-nose packaging.""" from __future__ import unicode_literals import os @@ -37,13 +39,13 @@ def get_long_description(title): setup( name='django-nose', - version='1.4.6', + version='1.4.7', description='Makes your Django tests simple and snappy', long_description=get_long_description('django-nose'), author='Jeff Balogh', author_email='me@jeffbalogh.org', - maintainer='Erik Rose', - maintainer_email='erikrose@grinchcentral.com', + maintainer='John Whitlock', + maintainer_email='jwhitlock@mozilla.com', url='http://github.com/jazzband/django-nose', license='BSD', packages=find_packages(exclude=['testapp', 'testapp/*']), From 6cabafa20ad1cb37b5ec709e1e01f89ba677e56b Mon Sep 17 00:00:00 2001 From: John Whitlock Date: Wed, 19 Aug 2020 17:38:39 -0500 Subject: [PATCH 2/2] Add status of project Nose, the base project, is in maintenance mode, and the sole maintainer of this project no longer uses django-nose. Let potential users know the status, and current users how to step up to maintenance. --- README.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.rst b/README.rst index e50eb4e..921c217 100644 --- a/README.rst +++ b/README.rst @@ -57,6 +57,21 @@ recommended. It follows the `Django's support policy`_, supporting: .. _latest release: https://pypi.python.org/pypi/nose .. _Django's support policy: https://docs.djangoproject.com/en/1.8/internals/release-process/#supported-versions + +Note to users +------------- + +`nose`_ has been in maintenance mode since at least 2015. ``django-nose`` is in +maintenance mode as well, and the sole maintainer is no longer an active user. +See `Jazzband.co`_ to learn how ``django-nose`` is maintained and how you can +help. New projects should consider using `pytest`_, or `unittest`_ with the +`Django testing framework`_. + +.. _Jazzband.co: https://jazzband.co +.. _pytest: https://docs.pytest.org/en/stable/ +.. _unittest: https://docs.python.org/3/library/unittest.html +.. _Django testing framework: https://docs.djangoproject.com/en/3.1/topics/testing/ + Installation ------------