summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-05-27 11:09:44 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-05-27 11:09:44 -0400
commit402da5f3f0bade44c2941ab8446f69cf33f5dd67 (patch)
tree69af104c4dcd4073b706c56191d8a6d2ba1a1c6c
parent142c94348ad4a341f7cbff3d76bf0df397fa782f (diff)
downloadsqlalchemy-402da5f3f0bade44c2941ab8446f69cf33f5dd67.tar.gz
Still more things we forgot for setting up 1.4
- main version number in __init__.py - changelog index page Fixes: #4631 Change-Id: I7ccdec1b60053e1a29542b94143b01b341193d00
-rw-r--r--doc/build/changelog/index.rst4
-rw-r--r--lib/sqlalchemy/__init__.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/doc/build/changelog/index.rst b/doc/build/changelog/index.rst
index 099353461..6e9189a74 100644
--- a/doc/build/changelog/index.rst
+++ b/doc/build/changelog/index.rst
@@ -12,7 +12,7 @@ Current Migration Guide
.. toctree::
:titlesonly:
- migration_13
+ migration_14
Change logs
-----------
@@ -20,6 +20,7 @@ Change logs
.. toctree::
:titlesonly:
+ changelog_14
changelog_13
changelog_12
changelog_11
@@ -41,6 +42,7 @@ Older Migration Guides
.. toctree::
:titlesonly:
+ migration_13
migration_12
migration_11
migration_10
diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py
index 075a72ef8..6e35ef97a 100644
--- a/lib/sqlalchemy/__init__.py
+++ b/lib/sqlalchemy/__init__.py
@@ -122,7 +122,7 @@ from .engine import create_engine # noqa nosort
from .engine import engine_from_config # noqa nosort
-__version__ = "1.3.4"
+__version__ = "1.4.0b1"
def __go(lcls):