Skip to content

Commit b593008

Browse files
committed
v0.4.3
1 parent 9fd7fa6 commit b593008

File tree

3 files changed

+31
-3
lines changed

3 files changed

+31
-3
lines changed

CHANGES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
2025-11-18, Version 0.4.3
2+
=========================
3+
4+
* chore: add pyproject.toml and replace tests_require with extras_require (#185) (bchoudhary6415)
5+
6+
* fix 'boolean value not defined' error on AS400 (#181) (Michael Maltese)
7+
8+
* use correct AS400 reflector when dbms_name/_ver is none (#183) (Michael Maltese)
9+
10+
* updated yml file to build project with every commit (#178) (bchoudhary6415)
11+
12+
* fix get_schema_names to remove trailing spaces (#177) (Michael Maltese)
13+
14+
* feat: make get_table_comment work on OS390 and AS400 (#176) (Michael Maltese)
15+
16+
* fix get_table_comment to work for views (#175) (Michael Maltese)
17+
18+
* Bump pypa/gh-action-pypi-publish in /.github/workflows (#169) (dependabot[bot])
19+
20+
* Add support for standard LIMIT and OFFSET syntax (#167) (bchoudhary6415)
21+
22+
* Fix: Add sqlalchemy.types.DOUBLE to dependency version specification (#166) (bchoudhary6415)
23+
24+
* Resolved Boolean renders as smallint (#163) (bchoudhary6415)
25+
26+
* Support for FULL OUTER JOIN (#162) (bchoudhary6415)
27+
28+
129
2025-06-23, Version 0.4.2
230
=========================
331

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ The IBM_DB_SA adapter provides the Python/SQLAlchemy interface to IBM Data Serve
55

66
Version
77
--------
8-
0.4.2 (2025/06/23)
8+
0.4.3 (2025/11/18)
99

1010
Prerequisites
1111
--------------
12-
1. Install Python 2.7 or newer versions except python 3.3 or Jython 2.5.x .
12+
1. Install Python 3.8 or newer versions or Jython 2.7.x .
1313
2. SQLAlchemy version between 0.7.3 - 2.0.x.
1414
3. IBM_DB driver and IBM_DB_DBI wrapper 1.0.1 or higher.
1515
```

ibm_db_sa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# | Contributors: Jaimy Azle, Mike Bayer |
1818
# +--------------------------------------------------------------------------+
1919

20-
__version__ = '0.4.2'
20+
__version__ = '0.4.3'
2121

2222
from . import ibm_db, pyodbc, base
2323

0 commit comments

Comments
 (0)