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
19 changes: 15 additions & 4 deletions .github/workflows/packdiff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
8 changes: 6 additions & 2 deletions core/docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
5 changes: 5 additions & 0 deletions docs/User/Project/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions docs/User/Project/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion streamly.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading