# HG changeset patch # User Magnus Schieder # Date 1589481588 -7200 # Node ID 6d2baff45b478b3eb4bf2212f07ba7b66ee160cc # Parent e17b7d1d9220474173af61b90dc27aa27a5babcb Prepares for release 3.6 diff -r e17b7d1d9220 -r 6d2baff45b47 CHANGES --- a/CHANGES Tue May 12 14:51:07 2020 +0200 +++ b/CHANGES Thu May 14 20:39:48 2020 +0200 @@ -1,4 +1,10 @@ -(unreleased) +3.6 2020-05-20 + + * getan-report again distinguishes between upper and lower letters in the + selection of projects. + Version 3.5 has changed the selection of projects in getan-report so that it + is no longer case-sensitive. This is due to the LIKE operator of sqlite3 + and was solved by the pragma 'case_sensitive_like'. 3.5 2020-04-23 diff -r e17b7d1d9220 -r 6d2baff45b47 getan/__init__.py --- a/getan/__init__.py Tue May 12 14:51:07 2020 +0200 +++ b/getan/__init__.py Thu May 14 20:39:48 2020 +0200 @@ -6,5 +6,5 @@ # This is Free Software licensed under the terms of GPLv3 or later. # For details see LICENSE coming with the source of 'getan'. -__version_info__ = ("3", "5", "dev1") +__version_info__ = ("3", "6") __version__ = '.'.join(__version_info__)