Skip to content

Commit c0765e1

Browse files
committed
v3.2.5
1 parent 1213520 commit c0765e1

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/bld_wheels_and_upload.yml

-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ jobs:
157157
name: ibmdb-sdist
158158
path: dist/*.tar.gz
159159

160-
161160
upload_pypi:
162161
needs: [build_wheels_windows_64, build_wheels_windows_32, build_wheels_linux, build_wheels_macos_arm64, build_wheels_macos_x86, build_sdist]
163162
runs-on: ${{ matrix.os }}

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2024-12-30, Version 3.2.5
2+
=========================
3+
4+
* update workflow file to fix macarm64 install issue (Bimal Jha)
5+
6+
* Fix for issue#981 Django showing all migrations as unaplied (#982) (bchoudhary6415)
7+
18
2024-12-11, Version 3.2.4
29
=========================
310

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.4"
25+
#define MODULE_RELEASE "3.2.5"
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.4'
34+
VERSION = '3.2.5'
3535
LICENSE = 'Apache License 2.0'
3636
readme = os.path.join(os.path.dirname(__file__),'README.md')
3737

0 commit comments

Comments
 (0)