Skip to content

Commit

Permalink
Update version to 2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sekrit-twc committed Jun 6, 2019
1 parent 91551f6 commit 6a06062
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2.9:
colorspace: improve accuracy of SSE2 LUT-based transfer functions
depth: AVX2 and AVX-512 code paths for limited range upsampling
graph: optimize tile width calculation
graph: reduce execution overhead
graph: skip processing pixels outside of active window
resize: change default bicubic from Mitchell-Netravali to Catmull-Rom
resize: make output bit-exact regardless of active window dimensions
x86: optimizations for AMD Piledriver and Zen1 processors

2.8:
api: rename colorspace enum values
colorspace: AVX-512 code paths for commonly used transfer functions
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([zimg], [2.8.0], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg])
AC_INIT([zimg], [2.9.0], [https://github.com/sekrit-twc/zimg/pulls], [zimg], [https://github.com/sekrit-twc/zimg])
AC_CONFIG_MACRO_DIR([m4])

: ${CFLAGS=""}
Expand Down
2 changes: 1 addition & 1 deletion src/zimg/api/zimg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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, 8, 0 };
constexpr unsigned VERSION_INFO[] = { 2, 9, 0 };


template <class T, class U>
Expand Down

0 comments on commit 6a06062

Please sign in to comment.