From e11d37e048452849ba5da42e0eb53f47e1ac6d4e Mon Sep 17 00:00:00 2001 From: James Brock Date: Mon, 19 Feb 2024 15:42:58 +0900 Subject: [PATCH] CI C++20 clang fix --- .github/workflows/ci.yml | 3 ++- README.md | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61ceb58..ab63fae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,8 @@ jobs: matrix: compiler: - cxx: "g++" - - cxx: "clang++" + # https://stackoverflow.com/questions/76859275/error-compiling-a-cpp-containing-stdchrono-errorstatic-constexpr-unsigned-fra + - cxx: "clang++ -stdlib=libc++" flags: - cxxflags: "-std=c++98" - cxxflags: "-std=c++11" diff --git a/README.md b/README.md index 78340a0..9fcbe84 100644 --- a/README.md +++ b/README.md @@ -593,6 +593,19 @@ mostly irrelevent. + + + + + +
Change Log
2024-02-19v1.4.0 + +Add `hffix::message_writer::push_back_header(std::string_view)` +and `hffix::field_value::as_string_view()` +by [Slawomir Kuzniar @skuzniar](https://github.com/skuzniar) +(#51) + +
2023-04-28 v1.3.0