From d537e40d7d0e751f3f56a154b09f57734ccb5fa3 Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Fri, 7 May 2021 22:32:44 +0200 Subject: [PATCH] More documentation update --- README.md | 8 +++++--- changelog | 2 +- git.release | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 657fd4d6..0df92cfd 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,11 @@ [![Build Status](https://www.travis-ci.org/chris2511/xca.svg?branch=master)](https://www.travis-ci.org/chris2511/xca) ## __Release Notes__ - * The latest release is *2.3.0* - * This is a minor release, fixing a couple of bugs and adding some - minor features. + * The latest release is *2.4.0* + * Most notable changes + * * Add support for Ed25519 keys + * * Add commandline support (e.g. generate CRL) + * Fix a lot of bugs * 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 4cda2f55..dcef4e78 100644 --- a/changelog +++ b/changelog @@ -1,6 +1,6 @@ * Unify XCA icon (certificate) on all platforms * Close #247: Apple silicon (M1) configure fixes - * AMicrosoft BitLocker + * Add Microsoft BitLocker extended key usage * Disregard OpenSSL 0.9.8 compatibility * Add bash completion script * Add context sensitive help diff --git a/git.release b/git.release index 2cd5a23c..889cb705 100755 --- a/git.release +++ b/git.release @@ -22,7 +22,7 @@ fi lasttag=$(git describe --abbrev=0 HEAD) unset unchanged -for i in changelog doc/xca.sgml README.md; do +for i in changelog README.md; do if git diff --quiet "$lasttag" -- $i; then echo "File $i untouched since $lasttag" unchanged="x" @@ -65,7 +65,7 @@ cp xca-$TVERSION.tar.gz "$releasedir" mkdir -p "xca-$TVERSION/BUILD" && cd "xca-$TVERSION/BUILD" ../configure && make -j7 mkdir "$releasedir/doc" - cp doc/*.html "$releasedir/doc" + cp -a doc/html "$releasedir/doc" ) ( cd ..