diff --git a/README.md b/README.md index ff50242c..7f5037b4 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,8 @@ ## __Release Notes__ - * This is a minor release, addressing 21 bugs and feature requests - * Most notable improvements: - 1. Support concurrent database access - 2. Support ODBC database driver and Microsoft SQL Server - 3. Switch to MSI installer on Windows + * This is a patch release, fixing *Issue #159: "Opening existing database"* + which prevented the current version opening databases of XCA 2.1.2 * Since version 2 of XCA the database format changed to SQL Don't try to open it with older versions of XCA (< 1.4.0). They will corrupt the database. diff --git a/changelog b/changelog index c0e3110f..9b648861 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,5 @@ + * Close #159 Opening existing database + xca 2.2.0 Wed Jan 29 2020 * Switch to MSI installer diff --git a/doc/xca.sgml b/doc/xca.sgml index 4ccbfa26..132637d3 100644 --- a/doc/xca.sgml +++ b/doc/xca.sgml @@ -7,7 +7,7 @@ (c) by Christian Hohnstädt, christian@hohnstaedt.de -January 2020 - Version 2.2.0 +January 2020 - Version 2.2.1 diff --git a/misc/gen-binary-hash b/misc/gen-binary-hash index b1848ce5..cc4f0ff5 100755 --- a/misc/gen-binary-hash +++ b/misc/gen-binary-hash @@ -6,7 +6,7 @@ export dir="$1" ( head -n -2 test -z "$dir" || cd $dir - sha256sum * | while read md file; do + sha256sum *xca* | while read md file; do echo ' "'$file'":"'$md'",' done cat <<-EOF