From c86c9fc57c31f5a4d043f3ffe5a4a00d73eea548 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Tue, 12 Dec 2023 17:13:56 -0800 Subject: [PATCH] Bump version and update changelog --- CHANGELOG.md | 5 +++++ morango/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 092e2bd..5857f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ List of the most important changes for each release. +## 0.7.1 + - Supersedes 0.7.0 + - Drops support for Python 3.4 and 3.5 + - Upgrades cryptography library to 3.3.2, the latest version that supports Python 2.7 + ## 0.6.19 - The `cleanupsyncs` management command now only cleans up sync sessions if also inactive for `expiration` amount of time - Fixes issue accessing index on queryset in `cleanupsyncs` management command diff --git a/morango/__init__.py b/morango/__init__.py index 1994278..167cc1d 100644 --- a/morango/__init__.py +++ b/morango/__init__.py @@ -3,4 +3,4 @@ from __future__ import unicode_literals default_app_config = "morango.apps.MorangoConfig" -__version__ = "0.7.0" +__version__ = "0.7.1"