summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-08 10:59:18 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-08 10:59:18 +0100
commitf6a19ecb5e70df5a86c44978b0f1f0e27bdbce41 (patch)
tree5f296045b44776150d56398a0df64a8d471f9030
parentfd7aa0e4a8cd723602702346bf8f773d2d5f0b23 (diff)
downloadufo-filters-f6a19ecb5e70df5a86c44978b0f1f0e27bdbce41.tar.gz
ufo-filters-f6a19ecb5e70df5a86c44978b0f1f0e27bdbce41.tar.bz2
ufo-filters-f6a19ecb5e70df5a86c44978b0f1f0e27bdbce41.tar.xz
ufo-filters-f6a19ecb5e70df5a86c44978b0f1f0e27bdbce41.zip
Release version 0.11
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS36
2 files changed, 37 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 549c9fc..45d91a8 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -13,7 +13,7 @@ project(ufo C)
set(TARNAME "ufo-filters")
set(UFO_FILTERS_VERSION_MAJOR "0")
-set(UFO_FILTERS_VERSION_MINOR "10")
+set(UFO_FILTERS_VERSION_MINOR "11")
set(UFO_FILTERS_VERSION_PATCH "0")
set(UFO_FILTERS_VERSION_STRING_LONG "${UFO_FILTERS_VERSION_MAJOR}.${UFO_FILTERS_VERSION_MINOR}.${UFO_FILTERS_VERSION_PATCH}")
set(UFO_FILTERS_VERSION_STRING_SHORT "${UFO_FILTERS_VERSION_MAJOR}.${UFO_FILTERS_VERSION_MINOR}")
diff --git a/NEWS b/NEWS
index 9bb0fcf..cfe0089 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,39 @@
+Version 0.11.0
+==============
+
+Enhancements:
+
+- Add option to build Sphinx manual
+- Improved filter documentation
+- Increase robustness of OpenCL kernels by using correct type everywhere
+- Make AMD clFFT optional
+- backproject: improve performance on GTX Titan
+- rescale: allow setting absolute width and height
+- camera: allow passing properties to camera
+- camera: simplify readout mechanism
+- dummy-data: opt-in for initialization using `init`
+
+Fixes:
+
+- Link only to required dependencies
+- Do not link oclfft unconditionally
+- zeropad: fix for centers < half width
+- Fix #121: use correct exit condition
+- Set std=c99 only on C source files
+- oclfft: link against UFO
+- rescale: remove debug output
+- lamino-backproject: fix for small max workgroups
+
+Breaks:
+
+- dummy-data: remove bitdepth property
+
+New filters:
+
+- Add GEMM matrix multiplication using CLBlast
+- Add bin filter to bin pixel values
+
+
Version 0.10.0
==============