diff --git a/README.rst b/README.rst index 2788686..2197a77 100644 --- a/README.rst +++ b/README.rst @@ -5,9 +5,6 @@ django-firebird .. image:: https://img.shields.io/pypi/v/django-firebird.svg :target: https://pypi.python.org/pypi/django-firebird -.. image:: https://caniusepython3.com/project/django-firebird.svg - :target: https://caniusepython3.com/project/django-firebird - Firebird SQL backend for django ------------------------------- diff --git a/docs/changelog.txt b/docs/changelog.txt index 922726f..c21f1f6 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -1,6 +1,11 @@ Changelog ========= +v2.2.0 +------ ++ Django 2.2 LTS support + + v1.11.0 ------- + Initial adjustments for support django 1.11 #93 diff --git a/firebird/__init__.py b/firebird/__init__.py index 7bb0087..4178156 100644 --- a/firebird/__init__.py +++ b/firebird/__init__.py @@ -1,6 +1,6 @@ from .version import get_version -VERSION = (2, 2, 0, 'alpha', 2) +VERSION = (2, 2, 0, 'final', 0) __version__ = get_version(VERSION) diff --git a/setup.py b/setup.py index d1f6c43..b9a9177 100644 --- a/setup.py +++ b/setup.py @@ -24,16 +24,17 @@ url='https://github.com/maxirobaina/django-firebird', packages=find_packages(), classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 5 - Production/Stable', 'Environment :: Web Environment', 'Framework :: Django', + 'Framework :: Django :: 2.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Database', 'Topic :: Internet :: WWW/HTTP',