diff --git a/NEWS.md b/NEWS.md index c6687a4c..26f91702 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,19 @@ # mp3fs News +## Important changes in 1.1 (2021-01-30) + +This contains various bug fixes, mostly. + +Fixes/improvements: + + - Recognize upper/mixed case in input filenames + - Fix file size handling with and without cache + - Various code simplifications/cleanup + +New features: + + - Log lines now include thread ID and can be customized. + ## Important changes in 1.0 (2020-05-24) mp3fs 1.0 is finally here\! diff --git a/configure.ac b/configure.ac index 53df788f..b7ba78d4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. # Sets up package and initializes build system. -AC_INIT([MP3FS], [1.0]) +AC_INIT([MP3FS], [1.1]) AC_CONFIG_SRCDIR([src/mp3fs.cc]) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE([foreign])