File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+
1112023-11-22, Version 3.2.1
212=========================
313
Original file line number Diff line number Diff line change 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>
Original file line number Diff line number Diff line change 3131from setuptools .command .install import install
3232
3333PACKAGE = 'ibm_db'
34- VERSION = '3.2.1 '
34+ VERSION = '3.2.2 '
3535LICENSE = 'Apache License 2.0'
3636readme = os .path .join (os .path .dirname (__file__ ),'README.md' )
3737
You can’t perform that action at this time.
0 commit comments