Skip to content

Commit

Permalink
Changes for release v0.4.1 on PyPI (#149)
Browse files Browse the repository at this point in the history
* Changes for release v0.4.1
---------

Signed-off-by: Balram Choudhary <[email protected]>
  • Loading branch information
bchoudhary6415 authored Jul 30, 2024
1 parent ebe2d19 commit fdb3618
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 2 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/ibm_db_sa_publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Build and upload to PyPI

# Build on every workflow_dispatch, branch push, tag push, and pull request change
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: |
python -m build
- name: Publish distribution to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@release/v1

permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
contents: write # Added permission for GitHub Actions to push tags
18 changes: 18 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
2024-07-30, Version 0.4.1
=========================

* Fix foreign key reflection when there are tables with the same name in different schemas (#128) (Xnot)

* Resolved issue of round function on zos server (#130) (bchoudhary6415)

* Resolved case-sensitive issue of round function (#131) (bchoudhary6415)

* Update pyodbc.py (#133) (Murchurl)

* Fix get_table_comment return value (#135) (andrasore-kodinfo)

* Fix boolean type not recognized warning (#140) (Xnot)

* Assign OS390Reflector for Db2 for z/OS (#147) (rhgit01)


2023-04-20, Version 0.4.0
=========================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The IBM_DB_SA adapter provides the Python/SQLAlchemy interface to IBM Data Serve

Version
--------
0.4.0 (2023/04/20)
0.4.1 (2024/07/30)

Prerequisites
--------------
Expand Down
2 changes: 1 addition & 1 deletion ibm_db_sa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# | Contributors: Jaimy Azle, Mike Bayer |
# +--------------------------------------------------------------------------+

__version__ = '0.4.0'
__version__ = '0.4.1'

from . import ibm_db, pyodbc, base

Expand Down

0 comments on commit fdb3618

Please sign in to comment.