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
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.3.0 (Sep 2025)

* Support streamly-0.11.0 and streamly-core-0.3.0

## 0.2.0 (Dec 2023)

* Support streamly-0.10.0 and streamly-core-0.2.0
Expand Down
4 changes: 2 additions & 2 deletions examples/DateTimeParser.hs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ _foldBreakDateTime arr = do
_parseBreakDateTime :: Array Char -> IO Int
_parseBreakDateTime arr = do
let s = StreamK.fromStream $ Stream.fromPure arr
p = Array.parserK . Parser.fromFold
p = Array.toParserK . Parser.fromFold
(Right year, s1) <- Array.parseBreak (p $ decimal 4) s
(_, s2) <- Array.parseBreak (p $ char '-') s1
(Right month, s3) <- Array.parseBreak (p $ decimal 2) s2
Expand All @@ -179,7 +179,7 @@ _parseKDateTime arr = do

where

p = Array.parserK
p = Array.toParserK

dateParser = do
year <- p $ Parser.decimal <* Parser.char '-'
Expand Down
4 changes: 2 additions & 2 deletions stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ extra-deps:
#- streamly-0.10.0
#- fusion-plugin-0.2.6
- git: https://github.com/composewell/streamly
commit: 4aa7ae215f64cf98f7b3c175d3a8c47c8bd3177e
commit: c7048326486e537908f9e6b7529f0d783014b7d9
- git: https://github.com/composewell/streamly
commit: 4aa7ae215f64cf98f7b3c175d3a8c47c8bd3177e
commit: c7048326486e537908f9e6b7529f0d783014b7d9
subdirs:
- core
- git: https://github.com/composewell/streamly-fsevents
Expand Down
2 changes: 1 addition & 1 deletion streamly-examples.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: streamly-examples
version: 0.2.0
version: 0.3.0
license: Apache-2.0
license-file: LICENSE
author: Composewell Technologies
Expand Down
Loading