Skip to content

Commit 800d7a3

Browse files
Update dependency version bounds
1 parent 11ff748 commit 800d7a3

File tree

2 files changed

+40
-42
lines changed

2 files changed

+40
-42
lines changed

hpack.yaml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ library:
8080
- Data.Unicode.Properties.Decompositions
8181
- Data.Unicode.Properties.DecompositionsK
8282
dependencies:
83-
- bitarray
84-
- bytestring
85-
- text
83+
- bitarray >= 0.0.1 && < 0.1
84+
- bytestring >= 0.9 && < 0.11
85+
- text >= 0.1 && < 1.3
8686

8787
# developer mode only
8888
# Simple program to generate perf stats
@@ -105,18 +105,18 @@ tests:
105105
main: NormalizationTest.hs
106106
other-modules: []
107107
dependencies:
108-
- getopt-generics
109-
- split
110-
- text
108+
- getopt-generics >= 0.11 && < 0.14
109+
- split >= 0.1 && < 0.3
110+
- text >= 0.1 && < 1.3
111111
- unicode-transforms
112112
quickcheck:
113113
source-dirs: test
114114
main: Properties.hs
115115
other-modules: QuickCheckUtils
116116
dependencies:
117-
- deepseq >= 1.1.0.0
118-
- QuickCheck
119-
- text
117+
- deepseq >= 1.1 && < 1.5
118+
- QuickCheck >= 2.1 && < 2.10
119+
- text >= 0.1 && < 1.3
120120
- unicode-transforms
121121
when:
122122
- condition: flag(has-icu)
@@ -128,9 +128,9 @@ tests:
128128
main: Extra.hs
129129
other-modules: QuickCheckUtils
130130
dependencies:
131-
- deepseq >= 1.1.0.0
132-
- QuickCheck
133-
- text
131+
- deepseq >= 1.1 && < 1.5
132+
- QuickCheck >= 2.1 && < 2.10
133+
- text >= 0.1 && < 1.3
134134
- unicode-transforms
135135

136136
benchmarks:
@@ -139,18 +139,17 @@ benchmarks:
139139
- condition: flag(has-icu)
140140
cpp-options: -DBENCH_ICU
141141
dependencies:
142-
- text-icu >= 0.6.2.1
142+
- text-icu >= 0.6.2.1 && < 0.8
143143

144144
source-dirs: benchmark
145145
main: Benchmark.hs
146146

147147
dependencies:
148-
- bitarray
149-
- criterion >= 1.1.1.0
150-
- deepseq >= 1.1.0.0
151-
- filepath
152-
- optparse-applicative
153-
- path
154-
- path-io
155-
- text
148+
- criterion >= 1.1.1 && < 1.2
149+
- deepseq >= 1.1.0 && < 1.5
150+
- filepath >= 1.0 && < 2
151+
- optparse-applicative >= 0.0.1 && < 0.14
152+
- path >= 0.0.0 && < 0.6
153+
- path-io >= 0.1.0 && < 1.3
154+
- text >= 0.1 && < 1.3
156155
- unicode-transforms

unicode-transforms.cabal

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ library
8181
Data.Unicode.Properties.DecompositionsK
8282
build-depends:
8383
base >= 4.7 && < 5
84-
, bitarray
85-
, bytestring
86-
, text
84+
, bitarray >= 0.0.1 && < 0.1
85+
, bytestring >= 0.9 && < 0.11
86+
, text >= 0.1 && < 1.3
8787
if flag(dev)
8888
ghc-options: -O0
8989
else
@@ -99,9 +99,9 @@ test-suite extras
9999
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
100100
build-depends:
101101
base >= 4.7 && < 5
102-
, deepseq >= 1.1.0.0
103-
, QuickCheck
104-
, text
102+
, deepseq >= 1.1 && < 1.5
103+
, QuickCheck >= 2.1 && < 2.10
104+
, text >= 0.1 && < 1.3
105105
, unicode-transforms
106106
if flag(dev)
107107
ghc-options: -O0
@@ -121,9 +121,9 @@ test-suite quickcheck
121121
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
122122
build-depends:
123123
base >= 4.7 && < 5
124-
, deepseq >= 1.1.0.0
125-
, QuickCheck
126-
, text
124+
, deepseq >= 1.1 && < 1.5
125+
, QuickCheck >= 2.1 && < 2.10
126+
, text >= 0.1 && < 1.3
127127
, unicode-transforms
128128
if flag(dev)
129129
ghc-options: -O0
@@ -147,9 +147,9 @@ test-suite ucd
147147
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
148148
build-depends:
149149
base >= 4.7 && < 5
150-
, getopt-generics
151-
, split
152-
, text
150+
, getopt-generics >= 0.11 && < 0.14
151+
, split >= 0.1 && < 0.3
152+
, text >= 0.1 && < 1.3
153153
, unicode-transforms
154154
if flag(dev)
155155
ghc-options: -O0
@@ -167,14 +167,13 @@ benchmark bench
167167
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates -fwarn-incomplete-uni-patterns -fwarn-tabs
168168
build-depends:
169169
base >= 4.7 && < 5
170-
, bitarray
171-
, criterion >= 1.1.1.0
172-
, deepseq >= 1.1.0.0
173-
, filepath
174-
, optparse-applicative
175-
, path
176-
, path-io
177-
, text
170+
, criterion >= 1.1.1 && < 1.2
171+
, deepseq >= 1.1.0 && < 1.5
172+
, filepath >= 1.0 && < 2
173+
, optparse-applicative >= 0.0.1 && < 0.14
174+
, path >= 0.0.0 && < 0.6
175+
, path-io >= 0.1.0 && < 1.3
176+
, text >= 0.1 && < 1.3
178177
, unicode-transforms
179178
if flag(dev)
180179
ghc-options: -O0
@@ -185,7 +184,7 @@ benchmark bench
185184
if flag(has-icu)
186185
cpp-options: -DBENCH_ICU
187186
build-depends:
188-
text-icu >= 0.6.2.1
187+
text-icu >= 0.6.2.1 && < 0.8
189188
other-modules:
190189
NormalizeFile
191190
default-language: Haskell2010

0 commit comments

Comments
 (0)