From be45a9be03c58abd32d8f3ebfc99764729f6f943 Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 4 Oct 2017 15:00:43 -0700 Subject: [PATCH] release 2.3.1 --- CHANGES.rst | 2 +- flask_sqlalchemy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3656afcc..046a6e5c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -5,7 +5,7 @@ Changelog Version 2.3.1 ------------- -In development +Released on October 5, 2017 - If a model has a table name that matches an existing table in the metadata, use that table. Fixes a regression where reflected tables were not picked up diff --git a/flask_sqlalchemy/__init__.py b/flask_sqlalchemy/__init__.py index 27125f67..f2c04b8a 100644 --- a/flask_sqlalchemy/__init__.py +++ b/flask_sqlalchemy/__init__.py @@ -32,7 +32,7 @@ from ._compat import itervalues, string_types, to_str, xrange from .model import DefaultMeta -__version__ = '2.3.0' +__version__ = '2.3.1' # the best timer function for the platform if sys.platform == 'win32': diff --git a/setup.py b/setup.py index e209c819..74d21b05 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='Flask-SQLAlchemy', - version='2.3.0', + version='2.3.1', url='http://github.com/mitsuhiko/flask-sqlalchemy', license='BSD', author='Armin Ronacher',