Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
curl -sL https://archives.boost.io/misc/node/node-v20.9.0-linux-x64-glibc-217.tar.xz | tar -xJ --strip-components 1 -C /node20217

- uses: actions/checkout@v4
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

- name: linux
shell: bash
Expand Down Expand Up @@ -200,14 +202,14 @@ jobs:
- name: "TOOLSET=clang CXXSTD=11,14,17,20 Job 5"
buildtype: "boost"
packages: ""
os: "macos-13"
os: "macos-15"
cxx: "clang++"
sources: ""
llvm_os: ""
llvm_ver: ""
xcode_version: 14.2.0
toolset: "clang"
cxxstd: "11,14,17,20"
xcode_version: 16.2.0
toolset: "clang-16"
cxxstd: "11,14,17,20,2b"

runs-on: ${{ matrix.os }}

Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ TODO (known issues):

CHANGELOG

Boost V1.92:
- Fixed #243: find_include_file incorrectly accepts directories as include files
- Fixed #246: Predefined macros (__FILE__, __LINE__, __INCLUDE_LEVEL__) are expanded twice when expanding_object_like_macro returns true
- Introduce digit separators (C++14), module keyword (C++20), and size_t literals (C++23)

Boost V1.87:
- Fixed #220: Seg fault under C++20 and empty stringify parameter (thanks jwnhy)
- Fixed #222: No line directive if first line of included file is blank (thanks Nick Nobles)
Expand Down
Loading