Skip to content

Commit 8011ffa

Browse files
committed
Version bumps
1 parent 935ca64 commit 8011ffa

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

number-six.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ Library
8080
containers >= 0.3 && < 0.6,
8181
dataenc >= 0.13 && < 0.15,
8282
deepseq >= 1.0 && < 1.4,
83-
http-conduit >= 1.9 && < 1.10,
83+
http-conduit >= 2.0 && < 2.1,
8484
http-types >= 0.6 && < 0.9,
8585
mtl >= 2 && < 2.2,
8686
network >= 2.3 && < 2.5,
8787
old-locale >= 1.0 && < 1.1,
8888
random >= 1.0 && < 1.1,
8989
sqlite-simple >= 0.4 && < 0.5,
90-
text >= 0.10 && < 0.12,
90+
text >= 0.10 && < 1.1,
9191
time >= 1.0 && < 1.5,
9292
unordered-containers >= 0.1 && < 0.3,
9393
vector >= 0.7 && < 0.11,
@@ -111,14 +111,14 @@ Test-suite number-six-tests
111111
containers >= 0.3 && < 0.6,
112112
dataenc >= 0.13 && < 0.15,
113113
deepseq >= 1.0 && < 1.4,
114-
http-conduit >= 1.9 && < 1.10,
114+
http-conduit >= 2.0 && < 2.1,
115115
http-types >= 0.6 && < 0.9,
116116
mtl >= 2 && < 2.2,
117117
network >= 2.3 && < 2.5,
118118
old-locale >= 1.0 && < 1.1,
119119
random >= 1.0 && < 1.1,
120120
sqlite-simple >= 0.4 && < 0.5,
121-
text >= 0.10 && < 0.12,
121+
text >= 0.10 && < 1.1,
122122
time >= 1.0 && < 1.5,
123123
unordered-containers >= 0.1 && < 0.3,
124124
vector >= 0.7 && < 0.11,

src/NumberSix/Handlers/NowPlaying.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ rgrfm = do
5656
where
5757
url = "http://www.rgrfm.be/core/jajaxfiles/nowplaying.php"
5858

59-
mreq :: Monad m => HC.Request m -> HC.Request m
59+
mreq :: HC.Request -> HC.Request
6060
mreq = HC.urlEncodedBody [("ajax", "jajax")]
6161

6262

src/NumberSix/Handlers/TryRuby.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ ruby cmd = do
4848
Right (Error x) -> return x
4949
Left _ -> randomError
5050
where
51-
setCmd :: Monad m => HC.Request m -> HC.Request m
51+
setCmd :: HC.Request -> HC.Request
5252
setCmd = HC.urlEncodedBody [("cmd", T.encodeUtf8 cmd)]
5353
setPut rq = rq {HC.method = "PUT"}
5454

src/NumberSix/Util/Http.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import NumberSix.Message
3636

3737

3838
--------------------------------------------------------------------------------
39-
type RequestOptions = forall m. Monad m => HC.Request m -> HC.Request m
39+
type RequestOptions = HC.Request -> HC.Request
4040

4141

4242
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)