Skip to content

Commit 1fb6fb2

Browse files
committed
Fix bug and update upstream LTS Haskell
1 parent c60c1bf commit 1fb6fb2

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## 1.1.1 - 2023-03-14
8+
9+
### Fixed
10+
- Close TBMChan when the session is closed
11+
712
## 1.1.0 - 2023-12-29
813

914
### Changed

json-rpc.cabal

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ cabal-version: 1.12
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: e0d0e4a6940f7d7d8752f6f8bc7749d96342dbc95525d41d2e9d23fddfa5bcf7
7+
-- hash: 0206b1a45ad29041be2d398ab0fc65ed5547443e7527e91e1af6cde940c89694
88

99
name: json-rpc
10-
version: 1.1.0
10+
version: 1.1.1
1111
synopsis: Fully-featured JSON-RPC 2.0 library
1212
description: Please see the README on GitHub at <https://github.com/jprupp/json-rpc#readme>
1313
category: Network
@@ -39,7 +39,7 @@ library
3939
ghc-options: -Wall
4040
build-depends:
4141
QuickCheck
42-
, aeson >=2.2
42+
, aeson
4343
, attoparsec
4444
, attoparsec-aeson
4545
, base >=4.6 && <5
@@ -64,7 +64,7 @@ executable concurrent-client
6464
Paths_json_rpc
6565
build-depends:
6666
QuickCheck
67-
, aeson >=2.2
67+
, aeson
6868
, attoparsec-aeson
6969
, base >=4.6 && <5
7070
, bytestring
@@ -87,7 +87,7 @@ executable concurrent-server
8787
Paths_json_rpc
8888
build-depends:
8989
QuickCheck
90-
, aeson >=2.2
90+
, aeson
9191
, attoparsec-aeson
9292
, base >=4.6 && <5
9393
, bytestring
@@ -110,7 +110,7 @@ executable time-client
110110
Paths_json_rpc
111111
build-depends:
112112
QuickCheck
113-
, aeson >=2.2
113+
, aeson
114114
, attoparsec-aeson
115115
, base >=4.6 && <5
116116
, bytestring
@@ -133,7 +133,7 @@ executable time-server
133133
Paths_json_rpc
134134
build-depends:
135135
QuickCheck
136-
, aeson >=2.2
136+
, aeson
137137
, attoparsec-aeson
138138
, base >=4.6 && <5
139139
, bytestring
@@ -160,7 +160,7 @@ test-suite test-json-rpc
160160
ghc-options: -threaded -rtsopts -with-rtsopts=-N
161161
build-depends:
162162
QuickCheck
163-
, aeson >=2.2
163+
, aeson
164164
, attoparsec-aeson
165165
, base >=4.6 && <5
166166
, bytestring

package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: json-rpc
2-
version: 1.1.0
2+
version: 1.1.1
33
synopsis: Fully-featured JSON-RPC 2.0 library
44
description: Please see the README on GitHub at <https://github.com/jprupp/json-rpc#readme>
55
category: Network
@@ -13,7 +13,7 @@ extra-source-files:
1313
- CHANGELOG.md
1414
dependencies:
1515
- base >=4.6 && <5
16-
- aeson >= 2.2
16+
- aeson
1717
- attoparsec-aeson
1818
- bytestring
1919
- conduit

stack.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
resolver: nightly-2023-12-29
1+
resolver: lts-22.13

stack.yaml.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
packages: []
77
snapshots:
88
- completed:
9-
sha256: f766d601155c2bea45efb55d58c83d9d8a67a888cbcd3e437cdcb6fc1ecad24f
10-
size: 513658
11-
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2023/12/29.yaml
12-
original: nightly-2023-12-29
9+
sha256: 6f0bea3ba5b07360f25bc886e8cff8d847767557a492a6f7f6dcb06e3cc79ee9
10+
size: 712905
11+
url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/22/13.yaml
12+
original: lts-22.13

0 commit comments

Comments
 (0)