From d05e9c068f573b6cb30c944c82c1ac06fb917194 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Fri, 21 Jul 2023 15:45:34 +0200 Subject: [PATCH] [DOC] Update README --- README.md | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index c0226183..bf1177eb 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,9 @@ # SDSL v3 - Succinct Data Structure Library -[![linux status][1]][2] -[![macos status][3]][4] +[![CI][1]][2] -[1]: https://img.shields.io/github/workflow/status/xxsds/sdsl-lite/CI%20on%20Linux/master?style=flat&logo=github&label=Linux%20CI "Open GitHub actions page" -[2]: https://github.com/xxsds/sdsl-lite/actions?query=branch%3Amaster -[3]: https://img.shields.io/github/workflow/status/xxsds/sdsl-lite/CI%20on%20macOS/master?style=flat&logo=github&label=macOS%20CI "Open GitHub actions page" -[4]: https://github.com/xxsds/sdsl-lite/actions?query=branch%3Amaster +[1]: https://img.shields.io/github/actions/workflow/status/xxsds/sdsl-lite/ci_linux.yml?branch=master&style=flat&logo=github&label=CI "Open GitHub actions page" +[2]: https://github.com/xxsds/sdsl-lite/actions?query=branch%3Amaster+event%3Apush ## Main differences to [v2](https://github.com/simongog/sdsl-lite) @@ -16,20 +13,20 @@ ## Supported compilers -Other compiler may work, but are not tested within the continuous integration. In general, the latest minor release of each -listed major compiler version is supported. +Other compiler may work, but are not tested within the continuous integration. In general, the latest minor release of +each listed major compiler version is supported. -* GCC 10, 11, 12, 13 -* clang 11, 12, 13, 14 +* GCC 11, 12, 13 +* clang 14, 15, 16 -Tests are run with both C++20 and C++23. +Tests are run with C++20 and C++23. ## Dependencies As SDSL v3 is header-only, dependencies marked as `required` only apply to building tests/examples. * required: [CMake >= 3.2](https://github.com/Kitware/CMake) -* required: [googletest 1.11.0](https://github.com/google/googletest/releases/tag/release-1.11.0) -* optional: [cereal 1.3.0](https://github.com/USCiLab/cereal) +* required: [googletest 1.13.0](https://github.com/google/googletest/releases/tag/release-1.13.0) +* optional: [cereal 1.3.2](https://github.com/USCiLab/cereal) cereal can be activated by passing `-DSDSL_CEREAL=1` to CMake.