diff --git a/.github/workflows/packdiff.yml b/.github/workflows/packdiff.yml index f377b4f014..0962df1e23 100644 --- a/.github/workflows/packdiff.yml +++ b/.github/workflows/packdiff.yml @@ -51,6 +51,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + ref: ${{ github.event.pull_request.head.sha }} # Use a sane PATH, especially to pick the right GHC - name: Set PATH to add .local and .ghcup @@ -79,8 +80,18 @@ jobs: cabal install packdiff --project-file=cabal.project.packdiff --installdir=$HOME/.local/bin --overwrite-policy=always fi - - name: API diff for streamly-core - run: packdiff diff streamly-core $(git rev-parse origin/master) streamly-core $(git rev-parse HEAD) + - name: Run packdiff on streamly-core + run: | + cabal run packdiff --project-file=cabal.project.packdiff -- \ + diff streamly-core \ + ${{ github.event.pull_request.base.sha }} \ + streamly-core \ + $(git rev-parse HEAD) - - name: API diff for streamly - run: packdiff diff streamly $(git rev-parse origin/master) streamly $(git rev-parse HEAD) + - name: Run packdiff on streamly + run: | + cabal run packdiff --project-file=cabal.project.packdiff -- \ + diff streamly \ + ${{ github.event.pull_request.base.sha }} \ + streamly \ + $(git rev-parse HEAD) diff --git a/core/docs/Changelog.md b/core/docs/Changelog.md index 5ff672c43e..9b16979050 100644 --- a/core/docs/Changelog.md +++ b/core/docs/Changelog.md @@ -12,9 +12,13 @@ default. Literally identical relative paths (e.g. `./x` and `./x`, or `c:` and `c:` on Windows) now compare equal. Pass `allowRelativeEquality False` to restore the previous strict behaviour. -* Bug fix: Fixed `followSymlinks` option not working correctly on macOS. -## 0.3.0 +## 0.3.1 (May 2026) + +* Fixed `Path.fromString` truncation when unicode chars are present. +* Fixed `DirIO.followSymlinks` option not working correctly on macOS. + +## 0.3.0 (Sep 2025) See [0.2.2-0.3.0 API Changelog](/core/docs/ApiChangelogs/0.2.2-0.3.0.txt) for a full list of deprecations, additions, and changes to the function signatures. diff --git a/docs/User/Project/CONTRIBUTORS.md b/docs/User/Project/CONTRIBUTORS.md index 9296554472..001226c940 100644 --- a/docs/User/Project/CONTRIBUTORS.md +++ b/docs/User/Project/CONTRIBUTORS.md @@ -4,6 +4,11 @@ please see https://github.com/composewell/streamly/issues. Use `git shortlog -sn tag1...tag2` on the git repository to get a list of contributors between two repository tags. +## 0.11.1 + +* Harendra Kumar +* John Hampton + ## 0.11.0 * Harendra Kumar diff --git a/docs/User/Project/Changelog.md b/docs/User/Project/Changelog.md index 68e9dc9bb9..83a154b762 100644 --- a/docs/User/Project/Changelog.md +++ b/docs/User/Project/Changelog.md @@ -4,11 +4,6 @@ ## Unreleased -### Bug Fixes - -* Fix `parDemuxScan` deadlock when a worker throws an exception while the - driver is blocked on a full input buffer. - ### Breaking Changes * The following deprecated modules have been removed: @@ -47,7 +42,12 @@ * Streamly.Internal.Data.SVar.Dispatch * Streamly.Internal.Data.SVar.Pull -## 0.11.0 +## 0.11.1 (May 2026) + +* Fix `parDemuxScan` deadlock when a worker throws an exception while the + driver is blocked on a full input buffer. + +## 0.11.0 (Sep 2025) See [0.10.1-0.11.0 API Changelog](https://github.com/composewell/streamly/blob/streamly-0.11.0/docs/User/Project/ApiChangelogs/0.10.1-0.11.0.txt) diff --git a/streamly.cabal b/streamly.cabal index b51d1b4595..9acdf663e4 100644 --- a/streamly.cabal +++ b/streamly.cabal @@ -549,7 +549,7 @@ library -- Network -- network version 3.2.8 is broken on windows - , network >= 2.6 && < 3.2.8 + , network >= 2.6 && < 3.3 if impl(ghc < 9.10)