Skip to content

Commit fdb3618

Browse files
Changes for release v0.4.1 on PyPI (ibmdb#149)
* Changes for release v0.4.1 --------- Signed-off-by: Balram Choudhary <bchoudhary@rocketsoftware.com>
1 parent ebe2d19 commit fdb3618

File tree

4 files changed

+59
-2
lines changed

4 files changed

+59
-2
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build and upload to PyPI
2+
3+
# Build on every workflow_dispatch, branch push, tag push, and pull request change
4+
on:
5+
workflow_dispatch:
6+
pull_request:
7+
push:
8+
branches:
9+
- master
10+
# Sequence of patterns matched against refs/tags
11+
tags:
12+
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10
13+
14+
jobs:
15+
deploy:
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.x'
25+
- name: Install dependencies
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install build
29+
- name: Build package
30+
run: |
31+
python -m build
32+
- name: Publish distribution to PyPI
33+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
34+
uses: pypa/gh-action-pypi-publish@release/v1
35+
36+
permissions:
37+
# IMPORTANT: this permission is mandatory for trusted publishing
38+
id-token: write
39+
contents: write # Added permission for GitHub Actions to push tags

CHANGES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2024-07-30, Version 0.4.1
2+
=========================
3+
4+
* Fix foreign key reflection when there are tables with the same name in different schemas (#128) (Xnot)
5+
6+
* Resolved issue of round function on zos server (#130) (bchoudhary6415)
7+
8+
* Resolved case-sensitive issue of round function (#131) (bchoudhary6415)
9+
10+
* Update pyodbc.py (#133) (Murchurl)
11+
12+
* Fix get_table_comment return value (#135) (andrasore-kodinfo)
13+
14+
* Fix boolean type not recognized warning (#140) (Xnot)
15+
16+
* Assign OS390Reflector for Db2 for z/OS (#147) (rhgit01)
17+
18+
119
2023-04-20, Version 0.4.0
220
=========================
321

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The IBM_DB_SA adapter provides the Python/SQLAlchemy interface to IBM Data Serve
55

66
Version
77
--------
8-
0.4.0 (2023/04/20)
8+
0.4.1 (2024/07/30)
99

1010
Prerequisites
1111
--------------

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.0'
20+
__version__ = '0.4.1'
2121

2222
from . import ibm_db, pyodbc, base
2323

0 commit comments

Comments
 (0)