diff --git a/CHANGES.md b/CHANGES.md index 904b201..e744b6f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,10 @@ +# Release 1.1.1 + +2019-07-05 + + * Bugfix: Files with different extensions like *.{jpg,tif} are now sorted + correctly by file name rather than by extension. + # Release 1.1.0 2019-07-03 diff --git a/Makefile b/Makefile index caa2e1b..01dc9f6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -app_version = 1.1.0 +app_version = 1.1.1 sdistfiles = verso.pl verso.conf verso.desktop README.md CHANGES.md Makefile LICENSE.txt bin = $(DESTDIR)/usr/bin/verso diff --git a/verso.pl b/verso.pl index 6440a9b..9f4ffef 100755 --- a/verso.pl +++ b/verso.pl @@ -33,7 +33,7 @@ use List::Util qw(min); my $app_name = 'Verso'; -my $app_version = '1.1.0'; +my $app_version = '1.1.1'; my $app_description = 'editor for embedded image metadata'; my $app_copyright = 'Copyright 2013-2019 Martin Hoppenheit'; my $app_website = 'https://martin.hoppenheit.info/code/verso/';