diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index cc6bd6d6..8da7d035 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,6 +27,7 @@ on: - 'src/**' - 'tests/**' - '**/CMakeLists.txt' + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.ref_type == 'branch' && github.sha }}-${{ github.event_name == 'workflow_dispatch' }}-${{ github.event_name == 'schedule' }}-${{ github.event.schedule }} @@ -174,10 +175,6 @@ jobs: # llvm, ucrt, libc++ - clang32 - clang64 - exclude: - # FIXME: bugging out with float parsing - - sys: clang32 - - sys: clang64 steps: - uses: msys2/setup-msys2@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4a1f00..b6af46c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 2.0.3 + +_Released 2024-05-xx_ + +## Fixes + + * Small CMake adjustments to better support use as a subproject (#113, thanks [@frankmiller (Frank Miller)](https://github.com/frankmiller)) + * Fix misplaced include of `GNUInstallDirs` in CMake (#111, thanks [@WangWeiLin-MV](https://github.com/WangWeiLin-MV)) + * Allow for externally installed versions for GTest and Google Benchmark (#112, thanks [@xvitaly (Vitaly)](https://github.com/xvitaly)) + * Adjust the definition of `SCN_COMPILER` to fix usage with a recent Clang using modules (#109, thanks [@Delta-dev-99 (Armando Martin)](https://github.com/Delta-dev-99)) + * Allow for more versions of dependencies (simdutf, fast_float) + * Fix C++23 build failure caused by missing inclusion of `` for `std::unreachable` + # 2.0.2 _Released 2024-02-19_