From 01ae12b43dafd60de7dda24d8ca23d96ee0d96b6 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Sat, 10 Apr 2021 21:58:42 +0200 Subject: [PATCH] Bump to 1.2 --- django_nyt/__init__.py | 2 +- docs/release_notes.rst | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/django_nyt/__init__.py b/django_nyt/__init__.py index f5f30cb8..9759e0b0 100644 --- a/django_nyt/__init__.py +++ b/django_nyt/__init__.py @@ -1,5 +1,5 @@ _disable_notifications = False -__version__ = "1.2.dev" +__version__ = "1.2" default_app_config = "django_nyt.apps.DjangoNytConfig" diff --git a/docs/release_notes.rst b/docs/release_notes.rst index a6b7f9de..ad01d342 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -1,6 +1,21 @@ Release Notes ============= +1.2 +--- + +Added +^^^^^ + +* Django 3.2 and Python 3.9 support (added to test matrix) +* Travis replaced with Circle CI + +Removed +^^^^^^^ + +* Django 1.11 and 2.1 support + + 1.1.6 -----