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

Version bound updates #705

Merged
merged 8 commits into from
May 17, 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
8 changes: 4 additions & 4 deletions beam-core/beam-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ library
Database.Beam.Schema.Lenses

build-depends: base >=4.11 && <5.0,
aeson >=0.11 && <2.2,
text >=1.2.2.0 && <2.1,
aeson >=0.11 && <2.3,
text >=1.2.2.0 && <2.2,
bytestring >=0.10 && <0.12,
mtl >=2.2.1 && <2.4,
microlens >=0.4 && <0.5,
ghc-prim >=0.5 && <0.11,
ghc-prim >=0.5 && <0.12,
free >=4.12 && <5.3,
dlist >=0.7.1.2 && <1.1,
time >=1.6 && <1.13,
Expand All @@ -75,7 +75,7 @@ library
containers >=0.5 && <0.7,
scientific >=0.3 && <0.4,
vector >=0.11 && <0.14,
vector-sized >=0.5 && <1.6,
vector-sized >=0.5 && <1.7,
tagged >=0.8 && <0.9

Default-language: Haskell2010
Expand Down
10 changes: 5 additions & 5 deletions beam-migrate/beam-migrate.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ library

build-depends: base >=4.9 && <5.0,
beam-core >=0.10 && <0.11,
text >=1.2 && <2.1,
aeson >=0.11 && <2.2,
text >=1.2 && <2.2,
aeson >=0.11 && <2.3,
bytestring >=0.10 && <0.12,
free >=4.12 && <5.3,
time >=1.6 && <1.13,
Expand All @@ -68,14 +68,14 @@ library
hashable >=1.2 && <1.5,
microlens >=0.4 && <0.5,
parallel >=3.2 && <3.3,
deepseq >=1.4 && <1.5,
ghc-prim >=0.5 && <0.11,
deepseq >=1.4 && <1.6,
ghc-prim >=0.5 && <0.12,
containers >=0.5 && <0.7,
haskell-src-exts >=1.18 && <1.24,
pretty >=1.1 && <1.2,
dependent-map >=0.2 && <0.5,
dependent-sum >=0.4 && <0.8,
pqueue >=1.3 && <1.5,
pqueue >=1.3 && <1.6,
uuid-types >=1.0 && <1.1
default-language: Haskell2010
default-extensions: KindSignatures, OverloadedStrings, TypeFamilies, FlexibleContexts,
Expand Down
10 changes: 5 additions & 5 deletions beam-postgres/beam-postgres.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ library
beam-core >=0.10 && <0.11,
beam-migrate >=0.5 && <0.6,

postgresql-libpq >=0.8 && <0.10,
postgresql-simple >=0.5 && <0.7,
postgresql-libpq >=0.8 && <0.11,
postgresql-simple >=0.5 && <0.8,

text >=1.0 && <2.1,
text >=1.0 && <2.2,
bytestring >=0.10 && <0.12,

attoparsec >=0.13 && <0.15,
Expand All @@ -48,9 +48,9 @@ library
free >=4.12 && <5.3,
time >=1.6 && <1.13,
monad-control >=1.0 && <1.1,
mtl >=2.1 && <2.3,
mtl >=2.1 && <2.4,
conduit >=1.2 && <1.4,
aeson >=0.11 && <2.2,
aeson >=0.11 && <2.3,
uuid-types >=1.0 && <1.1,
case-insensitive >=1.2 && <1.3,
scientific >=0.3 && <0.4,
Expand Down
4 changes: 2 additions & 2 deletions beam-sqlite/beam-sqlite.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ library
beam-migrate >=0.5 && <0.6,

sqlite-simple >=0.4 && <0.5,
text >=1.0 && <2.1,
text >=1.0 && <2.2,
bytestring >=0.10 && <0.12,
hashable >=1.2 && <1.5,
time >=1.6 && <1.13,
Expand All @@ -39,7 +39,7 @@ library
scientific >=0.3 && <0.4,
monad-control >=1.0 && <1.1,
network-uri >=2.6 && <2.7,
aeson >=0.11 && <2.2,
aeson >=0.11 && <2.3,
attoparsec >=0.13 && <0.15,
transformers-base >=0.4 && <0.5
default-language: Haskell2010
Expand Down
Loading