From ce107c4d5432d70321af8980a5e7fb64c4b4cce4 Mon Sep 17 00:00:00 2001 From: bragadeesh Date: Wed, 31 Aug 2016 14:46:51 -0700 Subject: [PATCH] notes & versioning for 2.12.2 --- ReleaseNotes.txt | 14 ++++++++++++++ src/CMakeLists.txt | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 9b32f7c4..5764e719 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -19,6 +19,20 @@ implementation of discrete Fast Fourier Transforms. It: * Supports in-place or out-of-place transforms +clFFT - Release Notes - version 2.12.2 +-------------------------------------- + +This is a patch update release to v2.12.1. +It has the following: + +* Fix for thread safety issues +* Fix for failures in certain 2D transforms +* Fix for failures on POCL runtime +* Other minor improvements + +Details on issues available on GitHub. + + clFFT - Release Notes - version 2.12.1 -------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 600c7812..ee2600b9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,7 +44,7 @@ if( NOT DEFINED CLFFT_VERSION_MINOR ) endif( ) if( NOT DEFINED CLFFT_VERSION_PATCH ) - set( CLFFT_VERSION_PATCH 1 ) + set( CLFFT_VERSION_PATCH 2 ) endif( ) set( CLFFT_VERSION "${CLFFT_VERSION_MAJOR}.${CLFFT_VERSION_MINOR}.${CLFFT_VERSION_PATCH}")