From 8c3e0c8525505f607816d9040ca4d27e01db7751 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 19:01:15 +0000 Subject: [PATCH 1/3] Bump KyleMayes/install-llvm-action from 1 to 2 Bumps [KyleMayes/install-llvm-action](https://github.com/kylemayes/install-llvm-action) from 1 to 2. - [Release notes](https://github.com/kylemayes/install-llvm-action/releases) - [Changelog](https://github.com/KyleMayes/install-llvm-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/kylemayes/install-llvm-action/compare/v1...v2) --- updated-dependencies: - dependency-name: KyleMayes/install-llvm-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d52de21..bd6cd63 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -81,7 +81,7 @@ jobs: Add-Content $env:GITHUB_PATH "C:\ProgramData\mingw64\mingw64\bin" - name: Setup LLVM and Clang - uses: KyleMayes/install-llvm-action@v1 + uses: KyleMayes/install-llvm-action@v2 if: ${{ matrix.llvm-version != '' }} with: version: ${{ matrix.llvm-version }} From 19634a73f59312666a24a6822c7b0de9bb910697 Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Sun, 2 Jun 2024 19:49:45 -0700 Subject: [PATCH 2/3] Update tests.yml --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd6cd63..e266ce6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,8 +14,8 @@ jobs: include: - os: ubuntu-20.04 # oldest LLVM that the install-llvm-action action is able to install - description: "LLVM 5" - llvm-version: "5" + description: "LLVM 7" + llvm-version: "7" - os: ubuntu-22.04 # select libc++ as libstdc++ appears to be the default From 9a39b6dfd1de86138ce49861d76c85d5d5f1572a Mon Sep 17 00:00:00 2001 From: Adam Lugowski Date: Sun, 2 Jun 2024 20:30:47 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4703480..3293b10 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Use poolSTL exclusively, or only on platforms lacking native support, or only if [TBB](https://www.intel.com/content/www/us/en/developer/tools/oneapi/onetbb.html) is not present. Supports C++11 and higher. Algorithms introduced in C++17 require C++17 or higher. -Tested in CI on GCC 7+, Clang/LLVM 5+, Apple Clang, MSVC, MinGW, and Emscripten. +Tested in CI on GCC 7+, Clang/LLVM 7+, Apple Clang, MSVC, MinGW, and Emscripten. ## Implemented Algorithms Algorithms are added on an as-needed basis. If you need one [open an issue](https://github.com/alugowski/poolSTL/issues) or contribute a PR.