Update README and fix minor release-script issues

This commit is contained in:
Christian Hohnstaedt 2024-08-27 21:45:35 +02:00
parent 7f5f682dbf
commit d27cc87632
3 changed files with 4 additions and 4 deletions

View File

@ -3,9 +3,9 @@
[![CMake](https://github.com/chris2511/xca/actions/workflows/cmake.yaml/badge.svg)](https://github.com/chris2511/xca/actions/workflows/cmake.yaml)
## __Release Notes__
* The latest release is *2.6.0*
* The latest release is *2.7.0*
* Drivers for SQL Servers must be [installed separately](#sql-remote-database-drivers) since 2.5.0
* Fix a lot of bugs
* Database Schema changed and is not backwards-compatible. Backup your database.
* Please report issues on github <https://github.com/chris2511/xca/issues>
## __Changelog:__

View File

@ -25,7 +25,7 @@ cd $TOP_DIR
do_openssl
cd $TOP_DIR
cmake -B "$BUILDDIR" -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH="$QT_DIR:$INSTALL_DIR" xca
cmake -B "$BUILDDIR" -G "MinGW Makefiles" -DCMAKE_PREFIX_PATH="$QT_DIR:$INSTALL_DIR" $XCA_DIR
cmake --build "$BUILDDIR" -j5
cmake --build "$BUILDDIR" -t install
cd "$BUILDDIR" && cpack

View File

@ -20,6 +20,6 @@ cat << EOF
After verifying the commits, tags and github release,
finally do:
git push origin --tags main
scp -r ${releasedir}/doc/html hohnstaedt.de:xca-doc/
scp -r ${releasedir}/html hohnstaedt.de:xca-doc/
Un-draft the release on github
EOF