diff options
-rw-r--r-- | .github/workflows/ci.yml | 16 | ||||
-rw-r--r-- | .github/workflows/codecov.yml | 2 | ||||
-rw-r--r-- | .github/workflows/codeql.yml | 2 | ||||
-rwxr-xr-x | build/version.sh | 2 | ||||
-rw-r--r-- | docs/CHANGELOG.md | 18 | ||||
-rw-r--r-- | docs/bfs.1 | 2 |
6 files changed, 30 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3fc8c7..3d9899e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -53,7 +53,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -84,7 +84,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | @@ -102,7 +102,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.29.0 @@ -130,7 +130,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.29.0 @@ -159,7 +159,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: cross-platform-actions/action@v0.29.0 @@ -189,7 +189,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: vmactions/dragonflybsd-vm@v1 @@ -225,7 +225,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run tests uses: vmactions/omnios-vm@v1 diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 7231aa0..70a6ff8 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install dependencies run: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1f2041c..2b4c80b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install dependencies run: | diff --git a/build/version.sh b/build/version.sh index ec0663a..734d897 100755 --- a/build/version.sh +++ b/build/version.sh @@ -14,5 +14,5 @@ if [ "${VERSION-}" ]; then elif [ -e "$DIR/.git" ] && command -v git >/dev/null 2>&1; then git -C "$DIR" describe --always --dirty else - echo "4.0.8" + echo "4.1" fi diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 56f53b4..80511f3 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,24 @@ 4.* === +4.1 +--- + +**August 11, 2025** + + +### New features + +- Added support for the `$LSCOLORS` variable used by FreeBSD and macOS + ([#54](https://github.com/tavianator/bfs/issues/54), + [#157](https://github.com/tavianator/bfs/pull/157)) + +### Changes + +- Switched from C17 to [C23](https://en.cppreference.com/w/c/23) by default. + C17 is still supported as a fallback as long as your compiler supports some common extensions. + + 4.0.8 ----- @@ -1,6 +1,6 @@ .\" Copyright © Tavian Barnes <tavianator@tavianator.com> .\" SPDX-License-Identifier: 0BSD -.TH BFS 1 2025-06-15 "bfs 4.0.8" +.TH BFS 1 2025-08-11 "bfs 4.1" .SH NAME bfs \- breadth-first search for your files .SH SYNOPSIS |