From 32ed0f3d040f48c99dc1d63ef09c898b906a0cf8 Mon Sep 17 00:00:00 2001 From: Martin Mahner Date: Thu, 16 May 2019 09:44:11 +0200 Subject: [PATCH] v3.1. Django 2.2 tests. --- CHANGELOG.rst | 1 + dpaste/__init__.py | 2 +- tox.ini | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5170df9..3159062 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,7 @@ Changelog ------------ - Django 2.1 support and tests. +- Django 2.2 support and tests. - General code cleanup by running the entire codebase through black_. - Right-to-left support for text snippets. - dart-sass is now used for SASS compilation. diff --git a/dpaste/__init__.py b/dpaste/__init__.py index 2417ab7..73d3d30 100644 --- a/dpaste/__init__.py +++ b/dpaste/__init__.py @@ -1,4 +1,4 @@ -VERSION = (3, 0, 'a', 2) +VERSION = (3, 1) __version__ = '{major}.{minor}{rest}'.format( major=VERSION[0], diff --git a/tox.ini b/tox.ini index 40e7cfa..d73623e 100644 --- a/tox.ini +++ b/tox.ini @@ -5,7 +5,7 @@ envlist= readme coverage_setup py{34,35,36,37}-django-{111,20} - py{35,36,37}-django-{21} + py{35,36,37}-django-{21,22} coverage_report [testenv] @@ -18,6 +18,7 @@ deps= django-111: django>=1.11,<2.0 django-20: django==2.0 django-21: django==2.1 + django-22: django==2.2 [testenv:coverage_setup] skip_install = True