Skip to content

Commit a411e48

Browse files
committed
Increased aeson and HUnit upper bounds.
1 parent 2679156 commit a411e48

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

json-rpc-server.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
-- documentation, see http://haskell.org/cabal/users-guide/
33

44
name: json-rpc-server
5-
version: 0.2.1.0
5+
version: 0.2.2.0
66
license: MIT
77
license-file: LICENSE
88
category: Network, JSON
@@ -37,7 +37,7 @@ library
3737
exposed-modules: Network.JsonRpc.Server
3838
other-modules: Network.JsonRpc.Types
3939
build-depends: base >=4.3 && <4.9,
40-
aeson >=0.6 && <0.10,
40+
aeson >=0.6 && <0.11,
4141
deepseq >= 1.1 && <1.5,
4242
bytestring >=0.9 && <0.11,
4343
mtl >=2.2.1 && <2.3,
@@ -65,10 +65,10 @@ test-suite tests
6565
type: exitcode-stdio-1.0
6666
build-depends: base >=4.3 && <4.9,
6767
json-rpc-server,
68-
HUnit >=1.2 && <1.3,
68+
HUnit >=1.2 && <1.4,
6969
test-framework >=0.7 && <0.9,
7070
test-framework-hunit >=0.3 && <0.4,
71-
aeson >=0.6 && <0.10,
71+
aeson >=0.6 && <0.11,
7272
bytestring >=0.9 && <0.11,
7373
mtl >=2.2.1 && <2.3,
7474
text >=0.11 && <1.3,

src/Network/JsonRpc/Server.hs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,10 @@ import Control.Applicative ((<$>))
6767
-- by-name arguments are ignored.
6868

6969
-- $example
70-
-- Here is an example with three JSON-RPC methods. It reads requests
71-
-- from stdin and writes responses to stdout. Compile it with the
72-
-- build flag @demo@.
70+
-- Here is an example with three JSON-RPC methods that all have
71+
-- access to an 'MVar' counter. The program reads requests from
72+
-- stdin and writes responses to stdout. Compile it with the build
73+
-- flag @demo@.
7374
--
7475
-- > <insert Demo.hs>
7576
--

0 commit comments

Comments
 (0)