Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Relax the upper bounds on network-run #28

Merged
merged 1 commit into from
Jun 12, 2024
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
Expand Up @@ -2,6 +2,10 @@

`attoparsec-framer` uses [PVP Versioning][1].

## 0.1.0.4 -- 2024-06-24

* Relax upper bounds of network-run

## 0.1.0.3 -- 2024-03-17

* Adjust all upper bounds for ByteString to allow use of 0.12.1.0
Expand Down
4 changes: 2 additions & 2 deletions attoparsec-framer.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: attoparsec-framer
version: 0.1.0.3
version: 0.1.0.4
synopsis: Use Attoparsec to parse framed protocol byte streams
description:
A library that simplifies the use of
Expand Down Expand Up @@ -57,7 +57,7 @@ executable toy-server
, base >=4.10 && <5
, bytestring >=0.10.8.2 && <0.13
, network >=3.1.0 && <4
, network-run >=0.2.2 && <0.3
, network-run >=0.2.2 && <0.4
, text >=1.2.3 && <2.2
, QuickCheck

Expand Down
Loading