Commit 120b746 1 parent 89e5f29 commit 120b746 Copy full SHA for 120b746
File tree 4 files changed +16
-6
lines changed
4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,10 @@ jobs:
113
113
strategy :
114
114
matrix :
115
115
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'
117
120
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
118
121
steps :
119
122
- uses : actions/download-artifact@v3
@@ -125,7 +128,4 @@ jobs:
125
128
- name : Publish distribution to PyPI
126
129
if : startsWith(github.ref, 'refs/tags')
127
130
uses : pypa/gh-action-pypi-publish@release/v1
128
- with :
129
- user : ${{secrets.PYPI_USER}}
130
- password : ${{ secrets.PYPI_PASSWORD}}
131
131
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
+
1
11
2023-11-22, Version 3.2.1
2
12
=========================
3
13
Original file line number Diff line number Diff line change 22
22
+--------------------------------------------------------------------------+
23
23
*/
24
24
25
- #define MODULE_RELEASE "3.2.1 "
25
+ #define MODULE_RELEASE "3.2.2 "
26
26
27
27
#include <Python.h>
28
28
#include <datetime.h>
Original file line number Diff line number Diff line change 31
31
from setuptools .command .install import install
32
32
33
33
PACKAGE = 'ibm_db'
34
- VERSION = '3.2.1 '
34
+ VERSION = '3.2.2 '
35
35
LICENSE = 'Apache License 2.0'
36
36
readme = os .path .join (os .path .dirname (__file__ ),'README.md' )
37
37
You can’t perform that action at this time.
0 commit comments