Skip to content

Commit e5bc47f

Browse files
committed
Merge remote-tracking branch 'origin/master' into logger-safe-async-io
2 parents 381c3fe + 917adb9 commit e5bc47f

16 files changed

+8880
-3
lines changed

.github/workflows/CI.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ jobs:
5454
5555
- name: Install GFortran macOS
5656
if: contains( matrix.os, 'macos')
57-
run: brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true
57+
run: |
58+
brew install gcc@${GCC_V} || brew upgrade gcc@${GCC_V} || true
59+
brew link gcc@${GCC_V}
5860
5961
- name: Configure with CMake
6062
run: cmake -Wdev -DCMAKE_BUILD_TYPE=Release -DCMAKE_MAXIMUM_RANK=4 -S . -B build

doc/specs/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This is and index/directory of the specifications (specs) for each new module/fe
1111

1212
## Experimental Features & Modules
1313

14+
- [bitsets](./stdlib_bitsets.html) - Bitset data types and procedures
1415
- [error](./stdlib_error.html) - Catching and handling errors
1516
- [IO](./stdlib_io.html) - Input/output helper & convenience
1617
- [linalg](./stdlib_linalg.html) - Linear Algebra

0 commit comments

Comments
 (0)