Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

set (PYTHON_UTIL_MAJOR_VERSION "6")
set (PYTHON_UTIL_MINOR_VERSION "3")
set (PYTHON_UTIL_RELEASE_VERSION "0")
set (PYTHON_UTIL_RELEASE_VERSION "1")
set (PYTHON_UTIL_VERSION ${PYTHON_UTIL_MAJOR_VERSION}.${PYTHON_UTIL_MINOR_VERSION}.${PYTHON_UTIL_RELEASE_VERSION})

2 changes: 1 addition & 1 deletion src/PythonUtil/PythonLogOutputStream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ void PythonLogOutputStream::closeUtilExcTryBlock ( )
{
closeBlock ( );
#if PY_VERSION_HEX >= 0x03000000 // v 5.6.2
write (UTF8String ("except Exception as re :", charset));
write (UTF8String ("except Exception as exc :", charset));
#else // #if PY_VERSION_HEX >= 0x03000000
write (UTF8String ("except Exception , exc :", charset));
#endif // #if PY_VERSION_HEX >= 0x03000000
Expand Down
7 changes: 7 additions & 0 deletions versions.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 6.3.1 : 02/09/26
===============

Correctif PythonLogOutputStream::closeUtilExcTryBlock : remplacement du nom de l'exception (re) par exc
pour correspondre au nom donné dans except.


Version 6.3.0 : 28/08/26
===============

Expand Down