More documentation update

This commit is contained in:
Christian Hohnstaedt 2021-05-07 22:32:44 +02:00
parent 2c38ddbd8d
commit d537e40d7d
3 changed files with 8 additions and 6 deletions

View File

@ -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.

View File

@ -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

View File

@ -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 ..