Skip to content

Commit d48c826

Browse files
authored
Merge pull request #1080 from haskell/caret-versions
Use caret version bounds
2 parents 3701d9e + df80211 commit d48c826

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

aeson.cabal

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ library
9393

9494
-- GHC bundled libs
9595
build-depends:
96-
base >=4.10.0.0 && <5
96+
, base >=4.10.0.0 && <5
9797
, bytestring >=0.10.8.2 && <0.13
9898
, containers >=0.5.10.2 && <0.7
9999
, deepseq >=1.4.3.0 && <1.6
@@ -105,7 +105,7 @@ library
105105

106106
-- Compat
107107
build-depends:
108-
generically >=0.1 && <0.2
108+
, generically >=0.1 && <0.2
109109
, time-compat >=1.9.6 && <1.10
110110

111111
if !impl(ghc >=8.6)
@@ -117,28 +117,28 @@ library
117117
-- Other dependencies
118118
build-depends:
119119
, character-ps ^>=0.1
120-
, data-fix >=0.3.2 && <0.4
121-
, dlist >=1.0 && <1.1
122-
, hashable >=1.4.2.0 && <1.5
123-
, indexed-traversable >=0.1.2 && <0.2
124-
, integer-conversion >=0.1 && <0.2
125-
, integer-logarithms >=1.0.3.1 && <1.1
126-
, network-uri >=2.6.4.1 && <2.7
127-
, OneTuple >=0.4.1.1 && <0.5
128-
, primitive >=0.8.0.0 && <0.10
129-
, QuickCheck >=2.14.3 && <2.15
130-
, scientific >=0.3.7.0 && <0.4
131-
, semialign >=1.3 && <1.4
132-
, strict >=0.5 && <0.6
133-
, tagged >=0.8.7 && <0.9
134-
, text-iso8601 >=0.1 && <0.2
135-
, text-short >=0.1.5 && <0.2
136-
, th-abstraction >=0.5.0.0 && <0.7
137-
, these >=1.2 && <1.3
138-
, unordered-containers >=0.2.10.0 && <0.3
139-
, uuid-types >=1.0.5 && <1.1
140-
, vector >=0.13.0.0 && <0.14
141-
, witherable >=0.4.2 && <0.5
120+
, data-fix ^>=0.3.2
121+
, dlist ^>=1.0
122+
, hashable ^>=1.4.2.0
123+
, indexed-traversable ^>=0.1.2
124+
, integer-conversion ^>=0.1
125+
, integer-logarithms ^>=1.0.3.1
126+
, network-uri ^>=2.6.4.1
127+
, OneTuple ^>=0.4.1.1
128+
, primitive ^>=0.8.0.0 || ^>=0.9.0.0
129+
, QuickCheck ^>=2.14.3
130+
, scientific ^>=0.3.7.0
131+
, semialign ^>=1.3
132+
, strict ^>=0.5
133+
, tagged ^>=0.8.7
134+
, text-iso8601 ^>=0.1
135+
, text-short ^>=0.1.5
136+
, th-abstraction ^>=0.5.0.0 || ^>=0.6.0.0
137+
, these ^>=1.2
138+
, unordered-containers ^>=0.2.10.0
139+
, uuid-types ^>=1.0.5
140+
, vector ^>=0.13.0.0
141+
, witherable ^>=0.4.2
142142

143143
ghc-options: -Wall
144144

@@ -197,7 +197,7 @@ test-suite aeson-tests
197197
UnitTests.UTCTime
198198

199199
build-depends:
200-
aeson
200+
, aeson
201201
, base
202202
, base-compat
203203
, base-orphans >=0.5.3 && <0.10
@@ -206,7 +206,7 @@ test-suite aeson-tests
206206
, containers
207207
, data-fix
208208
, deepseq
209-
, Diff >=0.4 && <0.5
209+
, Diff >=0.4 && <0.6
210210
, directory
211211
, dlist
212212
, filepath

0 commit comments

Comments
 (0)