packages feed

A-gent 0.11.0.4 → 0.11.0.5

raw patch · 3 files changed

+11/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

A-gent.cabal view
@@ -9,7 +9,7 @@ build-type: Simple                                                name: A-gent-version: 0.11.0.4+version: 0.11.0.5  synopsis: Polite & well educated LLM agent with excellent manners that always behaves well description: Polite and well educated LLM agent with excellent manners that always behaves well
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for Λ-gent +## 0.11.0.5  -- 2026-03-08++* `ENTER` only triggers if something is typed.+ ## 0.11.0.4  -- 2026-03-08  * Fixed the `BUG` when trying to print emojii's ('🍎', '🍏', …):
src/Agent/IO/Restricted.hs view
@@ -132,8 +132,12 @@                   sp = [ ' ' ]                   la = [ '\ESC', '[', 'D' ]           '\010':[] ->-            -- NOTE: Enter-            pure $ (++ acs) $ reverse $ bcs+            -- NOTE: Enter (only if something is typed)+            case (bcs, acs) of+              ([], []) ->+                aux bcs acs+              ________ ->+                pure $ (++ acs) $ reverse $ bcs           '\ESC':'[':'C':[] ->             -- NOTE: Allowed escaped sequences: Arrow "->"             case (bcs, acs) of