diff --git a/docs/changelog.txt b/docs/changelog.txt index 9f255ee..83a0701 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -1,6 +1,11 @@ Changelog ========= +v2.2.2 +------ ++ Fixed a strange error droping field with check constraint on firebird 3.0.x + More context at https://github.com/FirebirdSQL/firebird/issues/8135 + v2.2.1 ------ diff --git a/firebird/__init__.py b/firebird/__init__.py index 759d7a8..8815b74 100644 --- a/firebird/__init__.py +++ b/firebird/__init__.py @@ -1,6 +1,6 @@ from .version import get_version -VERSION = (2, 2, 1, 'final', 0) +VERSION = (2, 2, 2, 'final', 0) __version__ = get_version(VERSION)