From fb0125ebc74a31cbbaeaf95e2e066765c30b9ee8 Mon Sep 17 00:00:00 2001 From: Matthew Wardrop Date: Sat, 25 Sep 2021 22:25:54 -0700 Subject: [PATCH] Bump version to 0.5.2. --- doc/changes.rst | 5 +++++ patsy/version.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/changes.rst b/doc/changes.rst index 6eefc6c..2cbf18c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -8,6 +8,11 @@ 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 +v0.5.2 +------ + +* Fix some deprecation warnings associated with importing from the `collections` + module (rather than `collections.abc`) in Python 3.7+. v0.5.1 ------ diff --git a/patsy/version.py b/patsy/version.py index 9e301a7..527e93a 100644 --- a/patsy/version.py +++ b/patsy/version.py @@ -17,4 +17,4 @@ # want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* # 1.0.0.) -__version__ = "0.5.1+dev" +__version__ = "0.5.2"