diff options
-rw-r--r-- | doc/build/changelog/changelog_14.rst | 4 | ||||
-rw-r--r-- | lib/sqlalchemy/__init__.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/build/changelog/changelog_14.rst b/doc/build/changelog/changelog_14.rst index a50e6ed57..a3a828f27 100644 --- a/doc/build/changelog/changelog_14.rst +++ b/doc/build/changelog/changelog_14.rst @@ -14,6 +14,10 @@ This document details individual issue-level changes made throughout .. changelog:: + :version: 1.4.0 + :include_notes_from: unreleased_14 + +.. changelog:: :version: 1.4.0b3 :released: February 15, 2021 diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index e1f1a9436..333702835 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -130,7 +130,7 @@ from .types import VARBINARY # noqa from .types import VARCHAR # noqa -__version__ = "1.4.0b3" +__version__ = "1.4.0" def __go(lcls): |