diff --git a/README.rst b/README.rst index 6f8bac3..6814b2f 100644 --- a/README.rst +++ b/README.rst @@ -6,6 +6,14 @@ consider using other options.* **As of release 3.7.0 Paste no longer supports Python 2. If you are required to continue using Python 2 please pin an earlier version of Paste.** +**With version 3.10.0 Paste development moves to the pasteorg GitHub +organization and will be going deeper into maintenance mode unless +more active maintainers step forward to take over. "Deeper" in this +case means that releases will be much less frequent and patches +will only be accepted for security issues or major problems. Current +consumers of Paste should prepare to migrate away to more modern +solutions.** + Paste provides several pieces of "middleware" (or filters) that can be nested to build web applications. Each piece of middleware uses the WSGI (`PEP 333`_) interface, and should be compatible with other middleware based on those diff --git a/docs/index.txt b/docs/index.txt index 92ccac5..edb84ec 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -5,6 +5,14 @@ This is a new copy of the documentation for Paste. The project is now being maintained on limited life-support from https://github.com/pasteorg/paste **Please consider other options.** +**With version 3.10.0 Paste development moves to the pasteorg GitHub +organization and will be going deeper into maintenance mode unless +more active maintainers step forward to take over. "Deeper" in this +case means that releases will be much less frequent and patches +will only be accepted for security issues or major problems. Current +consumers of Paste should prepare to migrate away to more modern +solutions.** + Many of the links you will find in these docs will be out of date. If you know of a better destination for a link please submit an issue or pull request at the GitHub repository above. diff --git a/docs/news.txt b/docs/news.txt index ef697e1..e5e7a47 100644 --- a/docs/news.txt +++ b/docs/news.txt @@ -3,6 +3,21 @@ News .. contents:: +3.10.0 +------ + +* Move development to https://github.com/pasteorg/paste +* Vendor cgi.FieldStorage and cgitb.Hook +* More cleaning of Python 2 style code. + +With version 3.10.0 Paste development moves to the pasteorg GitHub +organization and will be going deeper into maintenance mode unless +more active maintainers step forward to take over. "Deeper" in this +case means that releases will be much less frequent and patches +will only be accepted for security issues or major problems. Current +consumers of Paste should prepare to migrate away to more modern +solutions. + 3.9.0 ----- diff --git a/setup.py b/setup.py index e7516e4..d787095 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # # The final step will release to pypi and to Github -__version__ = '3.9.0' +__version__ = '3.10.0' from setuptools import setup, find_packages import sys, os