From 869428a68a69783155eab70cda2ee19419c499fc Mon Sep 17 00:00:00 2001 From: Alvaro Date: Thu, 21 Nov 2024 21:16:47 +0100 Subject: [PATCH] Increase version mentions in documentation and README --- README.md | 4 ++-- doc/doc.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b4bd21f..1bbf6f9 100644 --- a/README.md +++ b/README.md @@ -307,7 +307,7 @@ With CMmake 3.14+, instead of using `find_package()`, you can download and build ```cmake include(FetchContent) -FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.11.zip) +FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.12.zip) FetchContent_MakeAvailable(asl) ``` @@ -345,7 +345,7 @@ With a recent CMake (3.14+) you can also build mbedTLS together with ASL as subp set(ASL_TLS ON) set(ENABLE_PROGRAMS OFF CACHE BOOL "") # skip samples FetchContent_Declare(mbedtls URL https://github.com/Mbed-TLS/mbedtls/archive/v3.2.1.zip) -FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.11.zip) +FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.12.zip) FetchContent_MakeAvailable(mbedtls asl) ``` diff --git a/doc/doc.h b/doc/doc.h index 7194a14..aeac6fd 100644 --- a/doc/doc.h +++ b/doc/doc.h @@ -73,7 +73,7 @@ With CMake 3.14+, instead of using `find_package()`, you can download and build ~~~ include(FetchContent) -FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.11.zip) +FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.12.zip) FetchContent_MakeAvailable(asl) ~~~ @@ -103,7 +103,7 @@ With a recent CMake you can also build mbedTLS together with ASL as subprojects set(ASL_TLS ON) set(ENABLE_PROGRAMS OFF CACHE BOOL "") # skip samples FetchContent_Declare(mbedtls URL https://github.com/Mbed-TLS/mbedtls/archive/v3.2.1.zip) -FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.11.zip) +FetchContent_Declare(asl URL https://github.com/aslze/asl/archive/1.11.12.zip) FetchContent_MakeAvailable(mbedtls asl) ```