summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-26 19:19:13 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2016-11-26 19:19:13 +0100
commit8790a560be55be03a12bae66e5cf240016568fe3 (patch)
treec65cb8b99c3a6edf5481917d029f4c3e7f59f30b
parent1d4fc63bb859827a79482ac1d4b8bf03e58fc823 (diff)
downloadufo-filters-8790a560be55be03a12bae66e5cf240016568fe3.tar.gz
ufo-filters-8790a560be55be03a12bae66e5cf240016568fe3.tar.bz2
ufo-filters-8790a560be55be03a12bae66e5cf240016568fe3.tar.xz
ufo-filters-8790a560be55be03a12bae66e5cf240016568fe3.zip
Release version 0.12
-rw-r--r--CMakeLists.txt4
-rw-r--r--NEWS30
2 files changed, 32 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 43e6536..15bd539 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -17,8 +17,8 @@ project(ufo C)
set(TARNAME "ufo-filters")
set(UFO_FILTERS_VERSION_MAJOR "0")
-set(UFO_FILTERS_VERSION_MINOR "11")
-set(UFO_FILTERS_VERSION_PATCH "1")
+set(UFO_FILTERS_VERSION_MINOR "12")
+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 a286db6..77c7b6f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,33 @@
+Version 0.12.0
+==============
+
+Enhancements:
+
+- Fortify source and enable large file support
+- Re-arrange filter documentation
+
+Fixes:
+
+- Fix #127: use enums where possible
+- Document the filter task
+- Fix potential errors found with static analysis
+- stdin: use gsize to avoid LFS problems
+- dfi-sinc: do not call exit()
+- raw/read: fix type translation for raw-offset
+
+Breaks:
+
+- metaballs: create filled balls rather than circles
+- metaballs: remove run-infinitely and fps props
+- filter: use enum instead of type-unsafe string
+- loop: rename ::count to ::number
+
+New filters:
+
+- Add binarization filter
+- Add basic segmentation filter
+
+
Version 0.11.1
==============