1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
======================
Hypothesis development
======================
Hypothesis development is managed by `David R. MacIver <https://www.drmaciver.com>`_
and `Zac Hatfield-Dodds <https://zhd.dev>`_, respectively the first author and lead
maintainer.
*However*, these roles don't include unpaid feature development on Hypothesis.
Our roles as leaders of the project are:
1. Helping other people do feature development on Hypothesis
2. Fixing bugs and other code health issues
3. Improving documentation
4. General release management work
5. Planning the general roadmap of the project
6. Doing sponsored development on tasks that are too large or in depth for other people to take on
So all new features must either be sponsored or implemented by someone else.
That being said, the maintenance team takes an active role in shepherding pull requests and
helping people write a new feature (see :gh-file:`CONTRIBUTING.rst` for
details and :gh-link:`these examples of how the process goes
<pulls?q=is%3Apr+is%3Amerged+mentored>`). This isn't
"patches welcome", it's "we will help you write a patch".
.. _release-policy:
Release policy
==============
Hypothesis releases follow `semantic versioning <https://semver.org/>`_.
We maintain backwards-compatibility wherever possible, and use deprecation
warnings to mark features that have been superseded by a newer alternative.
If you want to detect this, you can upgrade warnings to errors using the :mod:`warnings <python:warnings>` module.
We use a rapid release cycle to ensure users get features and bugfixes as soon as possible. Every change to the Hypothesis source is automatically built and published on PyPI as soon as it's merged into master. `We wrote about this process here <https://hypothesis.works/articles/continuous-releases/>`_.
Project roadmap
===============
Hypothesis does not have a long-term release plan. We respond to bug reports
as they are made; new features are released as and when someone volunteers to
write and maintain them.
|