diff --git a/CHANGES.md b/CHANGES.md index 6b93cc6..71a6ddc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ CHANGES ======= +2022/05/17 +-autoload bug fix with SQLAlchemy 1.4.x +-remove warning message while connection +-add columns reflection with comments +-other bug fixes reported + 2021/07/19 -add support for sqlalchemy 1.4 -Missing none check for dbma_name diff --git a/README.md b/README.md index 403f669..e8ae147 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ The IBM_DB_SA adapter provides the Python/SQLAlchemy interface to IBM Data Serve Version -------- -0.3.7 (2021/07/16) +0.3.8 (2022/05/17) Prerequisites -------------- diff --git a/ibm_db_sa/__init__.py b/ibm_db_sa/__init__.py index 7fca65a..5cb3f45 100644 --- a/ibm_db_sa/__init__.py +++ b/ibm_db_sa/__init__.py @@ -17,7 +17,7 @@ # | Contributors: Jaimy Azle, Mike Bayer | # +--------------------------------------------------------------------------+ -__version__ = '0.3.7' +__version__ = '0.3.8' from . import ibm_db, pyodbc, base