Skip to content

Commit 3be11c1

Browse files
committed
Raise bounds
1 parent 20f9f39 commit 3be11c1

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

github.cabal

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -155,25 +155,28 @@ library
155155
aeson >=1.4.0.0 && <1.5
156156
, base-compat >=0.10.4 && <0.11
157157
, base16-bytestring >=0.1.1.6 && <0.2
158-
, binary-orphans >=0.1.8.0 && <0.2
158+
, binary-instances >=1 && <1.1
159159
, cryptohash-sha1 >=0.11.100.1 && <0.12
160160
, deepseq-generics >=0.2.0.0 && <0.3
161-
, exceptions >=0.10.0 && <0.11
162-
, hashable >=1.2.7.0 && <1.3
161+
, exceptions >=0.10.2 && <0.11
162+
, hashable >=1.2.7.0 && <1.4
163163
, http-client >=0.5.12 && <0.7
164164
, http-client-tls >=0.3.5.3 && <0.4
165165
, http-link-header >=1.0.3.1 && <1.1
166-
, http-types >=0.12.1 && <0.13
166+
, http-types >=0.12.3 && <0.13
167167
, iso8601-time >=0.1.5 && <0.2
168168
, network-uri >=2.6.1.0 && <2.7
169-
, semigroups >=0.18.5 && <0.20
170169
, tagged
171170
, tls >=1.4.1
172-
, transformers-compat >=0.6 && <0.7
173-
, unordered-containers >=0.2.9.0 && <0.3
171+
, transformers-compat >=0.6.5 && <0.7
172+
, unordered-containers >=0.2.10.0 && <0.3
174173
, vector >=0.12.0.1 && <0.13
175174
, vector-instances >=3.4 && <3.5
176175

176+
if !impl(ghc >= 8.0)
177+
build-depends:
178+
semigroups >=0.18.5 && <0.20
179+
177180
test-suite github-test
178181
default-language: Haskell2010
179182
type: exitcode-stdio-1.0

src/GitHub/Internal/Prelude.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import Data.Aeson
4242
withObject, withText, (.!=), (.:), (.:?), (.=))
4343
import Data.Aeson.Types (typeMismatch)
4444
import Data.Binary (Binary)
45-
import Data.Binary.Orphans ()
45+
import Data.Binary.Instances ()
4646
import Data.Data (Data, Typeable)
4747
import Data.Foldable (toList)
4848
import Data.Hashable (Hashable (..))

0 commit comments

Comments
 (0)