Skip to content

Commit

Permalink
release changes for 3.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amukherjee28 committed Jun 13, 2022
1 parent a2eddd5 commit 937e3f0
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 7 deletions.
28 changes: 28 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@


2022-06-13, Version 3.1.2
===========================

* setup.py upgrade : better error handling while installation (Arnab Mukherjee)

* Code fix for issue #413 (Arnab Mukherjee)

* Code fix for issue #468 (Arnab Mukherjee)

* Code change for issue #720 (Arnab Mukherjee)

* documentation updates (Arnab Mukherjee)

* add custom clidriver bin path to ibm_db.py file (Alexandre Duverger)

* doc: update for issue #733 (Bimal Jha)

* fix: for issue #708 (Bimal Jha)

* doc: update about MacOS M1 Chip system (Bimal Jha)

* Add issue template (Bimal Jha)

* Add support for installing clidriver using another URL or artifactory URL. (#727) (MarcinMaciaszek)

* updating the CHANGES.md file (Arnab Mukherjee)


2022-01-11, Version 3.1.1
=========================

Expand Down
28 changes: 28 additions & 0 deletions IBM_DB/ibm_db/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@


2022-06-13, Version 3.1.2
===========================

* setup.py upgrade : better error handling while installation (Arnab Mukherjee)

* Code fix for issue #413 (Arnab Mukherjee)

* Code fix for issue #468 (Arnab Mukherjee)

* Code change for issue #720 (Arnab Mukherjee)

* documentation updates (Arnab Mukherjee)

* add custom clidriver bin path to ibm_db.py file (Alexandre Duverger)

* doc: update for issue #733 (Bimal Jha)

* fix: for issue #708 (Bimal Jha)

* doc: update about MacOS M1 Chip system (Bimal Jha)

* Add issue template (Bimal Jha)

* Add support for installing clidriver using another URL or artifactory URL. (#727) (MarcinMaciaszek)

* updating the CHANGES.md file (Arnab Mukherjee)


2022-01-11, Version 3.1.1
=========================

Expand Down
2 changes: 1 addition & 1 deletion IBM_DB/ibm_db/ibm_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
+--------------------------------------------------------------------------+
*/

#define MODULE_RELEASE "3.1.1"
#define MODULE_RELEASE "3.1.2"

#include <Python.h>
#include <datetime.h>
Expand Down
13 changes: 7 additions & 6 deletions IBM_DB/ibm_db/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from setuptools.command.install import install

PACKAGE = 'ibm_db'
VERSION = '3.1.1'
VERSION = '3.1.2'
LICENSE = 'Apache License 2.0'
readme = os.path.join(os.path.dirname(__file__),'README.md')

Expand Down Expand Up @@ -114,8 +114,8 @@ def _checkPythonHeaderFile():
else:
_printAndExit(_errormessage("noPythonDevel"))

_getinstalledDb2Path()
if sys.version_info >= (3, ):
_getinstalledDb2Path()

if ('IBM_DB_HOME' in os.environ):
ibm_db_home = os.getenv('IBM_DB_HOME')
Expand Down Expand Up @@ -454,9 +454,10 @@ def _setDllPath():
else:
ext_modules = _ext_modules(ibm_db_include, library, ibm_db_lib)

if('win32' not in sys.platform):
_checkGcc()
_checkPythonHeaderFile()
if('win32' not in sys.platform):
if sys.version_info >= (3, ):
_checkGcc()
_checkPythonHeaderFile()

setup( name = PACKAGE,
version = VERSION,
Expand Down

0 comments on commit 937e3f0

Please sign in to comment.