summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2020-02-28 14:29:26 +0100
committerBastien Nocera <hadess@hadess.net>2020-02-28 17:05:49 +0100
commitd83c1c2cc1f2c24b150d0dc3b4b4e202041fab7b (patch)
tree32a21ff4218e291c476d218a7d382bf64f5727ee
parent8a129c6c402e0569664d8b745f41f41115d031f7 (diff)
downloadtotem-pl-parser-V_3_26_5.tar.gz
3.26.5V_3_26_5
-rw-r--r--NEWS5
-rw-r--r--meson.build4
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 6ea3755..ffb92e6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
New features and significant updates in version...
+3.26.5:
+- Add g_auto* cleanup support
+- Add asynchronous version of totem_pl_parser_save()
+- Fixed parsing of some remote MP3 files
+
3.26.4:
- Apply same check to remote text files as local ones, which should
fix parsing of directories on network file systems
diff --git a/meson.build b/meson.build
index 3c6518f..df547ad 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('totem-pl-parser', 'c',
- version: '3.26.4', # Don't forget to also change plparser_lt_version!
+ version: '3.26.5', # Don't forget to also change plparser_lt_version!
default_options: [
'buildtype=debugoptimized',
'warning_level=1',
@@ -14,7 +14,7 @@ project('totem-pl-parser', 'c',
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
-plparser_lt_version='20:4:2'
+plparser_lt_version='21:4:3'
plparse_version = meson.project_version()
plparse_major_version = plparse_version.split('.')[0].to_int()