diff --git a/ChangeLog b/ChangeLog index 16966a90..88413184 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2.7.4: +x86: fix crash on Yorkfield (Core 2 Quad) processors (introduced in 2.7) + 2.7.3 resize: fix performance drop in certain resampling ratios diff --git a/configure.ac b/configure.ac index b5a9ad71..baf89c9d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([zimg], [2.7.3], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg]) +AC_INIT([zimg], [2.7.4], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg]) AC_CONFIG_MACRO_DIR([m4]) : ${CFLAGS=""} diff --git a/src/zimg/api/zimg.cpp b/src/zimg/api/zimg.cpp index f01aff39..0fae4620 100644 --- a/src/zimg/api/zimg.cpp +++ b/src/zimg/api/zimg.cpp @@ -36,7 +36,7 @@ constexpr unsigned API_VERSION_2_2 = ZIMG_MAKE_API_VERSION(2, 2); thread_local zimg_error_code_e g_last_error = ZIMG_ERROR_SUCCESS; thread_local std::string g_last_error_msg; -constexpr unsigned VERSION_INFO[] = { 2, 7, 3 }; +constexpr unsigned VERSION_INFO[] = { 2, 7, 4 }; template