diff --git a/CHANGES.md b/CHANGES.md index 14394ce..ceb0ee2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +### v2.1.2 + +- Fixes an issue with dependencies during setup + ### v2.1.1 - Drops support for Python 3.5. diff --git a/therapist/__init__.py b/therapist/__init__.py index 6908a29..e047288 100644 --- a/therapist/__init__.py +++ b/therapist/__init__.py @@ -1,4 +1,4 @@ -VERSION = (2, 1, 1) +VERSION = (2, 1, 2) __version__ = ".".join(str(v) for v in VERSION)