From 2372770f6af7f02a3f90e663093737e54c12936f Mon Sep 17 00:00:00 2001 From: Thomas Lauf Date: Thu, 27 May 2021 22:44:54 +0200 Subject: [PATCH] Increase minimum requirement to C++14 Signed-off-by: Thomas Lauf --- CONTRIBUTING.md | 4 ++-- INSTALL | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 460d8e60..b1133ae0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -206,5 +206,5 @@ To be a little more explicit, the common elements across the languages are: We target Python 3 so that our test suite runs on the broadest set of platforms. -We can safely target C++11 because all the default compilers on our supported platforms are ready. -Feel free to use C++14 and C++17 provided that all build platforms support this. +We can safely target C++14 because all the default compilers on our supported platforms are ready. +Feel free to use C++17 and C++20 provided that all build platforms support this. diff --git a/INSTALL b/INSTALL index 8a71bde5..7f51b0c0 100644 --- a/INSTALL +++ b/INSTALL @@ -10,9 +10,9 @@ In order to build Timewarrior, you will need: - cmake (See https://cmake.org) - make -You will need a C++ compiler that supports full C++11, which includes: - - gcc 4.8.1 (released 2013-03-31) - - clang 3.3 (released 2013-06-17) +You will need a C++ compiler that supports full C++14, which includes: + - gcc 6.1 + - clang 3.4 # Basic Installation