vty 5.35 → 5.35.1
raw patch · 3 files changed
+10/−2 lines, 3 files
Files
- CHANGELOG.md +6/−0
- test/VerifyUsingMockInput.hs +3/−1
- vty.cabal +1/−1
CHANGELOG.md view
@@ -1,4 +1,10 @@ +5.35.1+------++Bug fixes:+ * Fixed a build issue with a test program.+ 5.35 ----
test/VerifyUsingMockInput.hs view
@@ -132,7 +132,9 @@ readLoop 0 = return () readLoop n = do e <- atomically $ readTChan $ input^.eventChannel- modifyIORef eventsRef ((:) e)+ case e of+ InputEvent ev -> modifyIORef eventsRef ((:) ev)+ ResumeAfterSignal -> return () readLoop (n - 1) genEventsUsingIoActions maxDuration writeWaitClose readEvents outEvents <- reverse <$> readIORef eventsRef
vty.cabal view
@@ -1,5 +1,5 @@ name: vty-version: 5.35+version: 5.35.1 license: BSD3 license-file: LICENSE author: AUTHORS