diff --git a/doc/changes.rst b/doc/changes.rst index 124584c..6d0a590 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -8,9 +8,15 @@ All Patsy releases are archived at Zenodo: .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg :target: https://doi.org/10.5281/zenodo.592075 +v1.0.1 +------ + +* Removed an inadvertent hard dependency on pytest. + v1.0.0 ------ +* Add support for Python 3.13. * Drop support for Python 2.7 (and remove dependency on the `six` module). * Fix compatibility with `numpy >= 2`. * Update development status to 'mature'. diff --git a/patsy/version.py b/patsy/version.py index 9ea6b6a..c16a1be 100644 --- a/patsy/version.py +++ b/patsy/version.py @@ -6,15 +6,15 @@ # places -- it is imported by patsy/__init__.py, execfile'd by setup.py, etc. # We use a simple scheme: -# 1.0.0 -> 1.0.0+dev -> 1.1.0 -> 1.1.0+dev +# 1.0.1 -> 1.0.1+dev -> 1.1.0 -> 1.1.0+dev # where the +dev versions are never released into the wild, they're just what # we stick into the VCS in between releases. # # This is compatible with PEP 440: # http://legacy.python.org/dev/peps/pep-0440/ # via the use of the "local suffix" "+dev", which is disallowed on index -# servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we -# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* -# 1.0.0.) +# servers and causes 1.0.1+dev to sort after plain 1.0.1, which is what we +# want. (Contrast with the special suffix 1.0.1.dev, which sorts *before* +# 1.0.1.) -__version__ = "1.0.0" +__version__ = "1.0.1"