From 7697359c32cc4bf03434423cde00ea7b9cedc92e Mon Sep 17 00:00:00 2001 From: pantor Date: Sat, 21 Mar 2020 15:34:11 +0100 Subject: [PATCH] update compilers in readme --- .gitignore | 4 ---- README.md | 9 +++++---- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 10a7663..c0a0221 100644 --- a/.gitignore +++ b/.gitignore @@ -16,10 +16,6 @@ *.dylib *.dll -# Fortran module files -*.mod -*.smod - # Compiled Static libraries *.lai *.la diff --git a/README.md b/README.md index 647b319..4ea7e19 100644 --- a/README.md +++ b/README.md @@ -293,11 +293,12 @@ render("Hello{# Todo #}!", data); // "Hello!" ``` - ## Supported compilers Inja uses `string_view` from C++17, but includes the [polyfill](https://github.com/martinmoene/string-view-lite) from martinmoene. This way, the minimum version is C++11. Currently, the following compilers are tested: -- GCC 5.0 - 8.0 (and possibly later) -- Clang 5.0 - 6.0 (and possibly later) -- Microsoft Visual C++ 2015 - 2017 (and possibly later) +- GCC 5.0 - 9 (and possibly later) +- Clang 3.5 - 9 (and possibly later) +- Microsoft Visual C++ 2016 - 2019 (and possibly later) + +A complete list of supported compiler / os versions can be found in the [CI definition](https://github.com/pantor/inja/blob/master/.github/workflows/ci.yml).