Set correct minimal versions in default conf
Set `MBEDTLS_SSL_MIN_MAJOR_VERSION` and `MBEDTLS_SSL_MIN_MINOR_VERSION`
instead of `MBEDTLS_SSL_MAJOR_VERSION_3` and `MBEDTLS_SSL_MINOR_VERSION_1`
diff --git a/ChangeLog b/ChangeLog
index ed7818e..aa98f7f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -62,6 +62,10 @@
* Fix issue in RSA key generation program programs/x509/rsa_genkey
where the failure of CTR DRBG initialization lead to freeing an
RSA context without proper initialization beforehand.
+ * Fix setting version TLSv1 as minimal version, even if TLS 1
+ is not enabled. Set `MBEDTLS_SSL_MIN_MAJOR_VERSION`
+ and `MBEDTLS_SSL_MIN_MINOR_VERSION` instead
+ of `MBEDTLS_SSL_MAJOR_VERSION_3` and `MBEDTLS_SSL_MINOR_VERSION_1`
Changes
* Extend cert_write example program by options to set the CRT version