From 79c9317b4388886ee45fa367ca18e800a9733386 Mon Sep 17 00:00:00 2001 From: Jonathan Daugherty Date: Sun, 30 Jun 2024 09:04:26 -0700 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 14 ++++++++++++++ brick.cabal | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48355493..5e685491 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ Brick changelog --------------- +2.3.2 +----- + +Bug fixes: +* `FileBrowser`: if the `FileBrowser` was initialized with a `FilePath` + that ended in a slash, then if the user hit `Enter` on the `../` entry + to move to the parent directory, the only effect was the removal of + that trailing slash. This change trims the trailing slash so that the + expected move occurs whenever the `../` entry is selected. +* `Brick.Keybindings.Pretty.keybindingHelpWidget`: fixed a problem where + a key event with no name in a `KeyEvents` would cause a `fromJust` + exception. The pretty-printer now falls back to a placeholder + representation for such unnamed key events. + 2.3.1 ----- diff --git a/brick.cabal b/brick.cabal index cfd3eabf..176fc95c 100644 --- a/brick.cabal +++ b/brick.cabal @@ -1,5 +1,5 @@ name: brick -version: 2.3.1 +version: 2.3.2 synopsis: A declarative terminal user interface library description: Write terminal user interfaces (TUIs) painlessly with 'brick'! You