From: Steinar H. Gunderson Date: Thu, 15 Oct 2020 22:50:22 +0000 (+0200) Subject: Release plocate 1.0.4. X-Git-Tag: 1.0.4^0 X-Git-Url: https://git.sesse.net/?p=plocate;a=commitdiff_plain;h=fb389b6747c6ea8db9257d8ad55251909d140358 Release plocate 1.0.4. --- diff --git a/NEWS b/NEWS index c375130..a7f3fbd 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +plocate 1.0.4, October 16th, 2020 + + - Fix a bug where plocate.db would be evicted from the OS cache + (the behavior was only meant for benchmarking). + + - On fallback linear scans, such as regexes or very short patterns, + use multithreading to speed up the search. + + plocate 1.0.3, October 15th, 2020 - Portability fixes; plocate will now compile and run on non-x86 diff --git a/meson.build b/meson.build index 913fc0f..bcba651 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.4-pre') +project('plocate', 'cpp', default_options: ['buildtype=debugoptimized','cpp_std=c++17'], version: '1.0.4') # Make the version available as a #define. add_project_arguments('-DPLOCATE_VERSION="' + meson.project_version() + '"', language: 'cpp')