summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--NEWS36
-rw-r--r--meson.build2
3 files changed, 38 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 28838a9..1208b70 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,7 +17,7 @@ project(ufo C)
set(TARNAME "ufo-filters")
set(UFO_FILTERS_VERSION_MAJOR "0")
-set(UFO_FILTERS_VERSION_MINOR "13")
+set(UFO_FILTERS_VERSION_MINOR "14")
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 5fcbed9..f90f145 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,39 @@
+Version 0.14.0
+==============
+
+Enhancements:
+
+- Support meson build system alongside CMake
+- Suppress tiff writing warnings
+- dummy-data: add random-metadata flag
+- interpolate: use GPU instead of OpenMP which is an order of magnitude faster
+- lamino: allow setting addressing mode
+- monitor: output metadata values as well
+- raw-read: split offset in pre and post offsets
+- write: add counter-start and counter-step
+- write: add minimum/maximum to control conversion
+- null: allow printing durations from timestamps
+
+Fixes:
+
+- lamino: prevent volume shifting in center kernel
+- Fix #133: allow crop position with specifying dims
+
+Breaks:
+
+- Replaced stdout filter with standard write module
+- write: rename quality property to jpeg-quality
+
+New filters:
+
+- Add rotate filter
+- Add stitch task
+- Add interpolate-stream task
+- Add correlate-stacks task
+- Add cut task
+- Add stamp filter to print current iteration into output buffer
+
+
Version 0.13.0
==============
diff --git a/meson.build b/meson.build
index a48a9ae..9e8cf34 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project('ufo-filters',
['c', 'cpp'],
- version: '0.13.0'
+ version: '0.14.0'
)
version = meson.project_version()