File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.1.4.3
4+
5+ - Add missing export for Dir.
6+
37## 0.1.4.2
48
59- Support retry-0.9
Original file line number Diff line number Diff line change 11cabal-version : 2.4
22name : matrix-client
3- version : 0.1.4.2
3+ version : 0.1.4.3
44synopsis : A matrix client library
55description :
66 Matrix client is a library to interface with https://matrix.org.
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ module Network.Matrix.Client
3939 getTokenOwner ,
4040
4141 -- * Room Events
42+ Dir (.. ),
4243 EventType (.. ),
4344 MRCreate (.. ),
4445 MRCanonicalAlias (.. ),
@@ -414,7 +415,11 @@ getRoomStateEvent session (RoomID rid) (EventType et) (StateKey key) = do
414415 request <- mkRequest session True $ " /_matrix/client/v3/rooms/" <> rid <> " /state" <> et <> " /" <> key
415416 doRequest session request
416417
417- data Dir = F | B
418+ data Dir
419+ = -- | Forward
420+ F
421+ | -- | Backward
422+ B
418423
419424renderDir :: Dir -> B. ByteString
420425renderDir F = " f"
You can’t perform that action at this time.
0 commit comments