Skip to content

Commit 120b746

Browse files
committed
v3.2.2
1 parent 89e5f29 commit 120b746

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.github/workflows/bld_wheels_and_upload.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,10 @@ jobs:
113113
strategy:
114114
matrix:
115115
os: [ubuntu-latest]
116-
#upload to PyPI on every tag starting with 'v'
116+
permissions:
117+
# IMPORTANT: this permission is mandatory for trusted publishing
118+
id-token: write
119+
#upload to PyPI on every tag starting with 'v'
117120
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
118121
steps:
119122
- uses: actions/download-artifact@v3
@@ -125,7 +128,4 @@ jobs:
125128
- name: Publish distribution to PyPI
126129
if: startsWith(github.ref, 'refs/tags')
127130
uses: pypa/gh-action-pypi-publish@release/v1
128-
with:
129-
user: ${{secrets.PYPI_USER}}
130-
password: ${{ secrets.PYPI_PASSWORD}}
131131

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2024-03-02, Version 3.2.2
2+
=========================
3+
4+
* Support for python3.12 (#913) (bchoudhary6415)
5+
6+
* fixed Typo on clidriver (#905) (Manoj K Jadwani)
7+
8+
* doc: update readme file (Bimal Jha)
9+
10+
111
2023-11-22, Version 3.2.1
212
=========================
313

ibm_db.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
+--------------------------------------------------------------------------+
2323
*/
2424

25-
#define MODULE_RELEASE "3.2.1"
25+
#define MODULE_RELEASE "3.2.2"
2626

2727
#include <Python.h>
2828
#include <datetime.h>

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from setuptools.command.install import install
3232

3333
PACKAGE = 'ibm_db'
34-
VERSION = '3.2.1'
34+
VERSION = '3.2.2'
3535
LICENSE = 'Apache License 2.0'
3636
readme = os.path.join(os.path.dirname(__file__),'README.md')
3737

0 commit comments

Comments
 (0)