copilot-prettyprinter 3.16.1 → 3.17
raw patch · 3 files changed
+9/−3 lines, 3 filesdep ~copilot-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: copilot-core
API changes (from Hackage documentation)
Files
- CHANGELOG +6/−0
- copilot-prettyprinter.cabal +2/−2
- src/Copilot/PrettyPrint.hs +1/−1
CHANGELOG view
@@ -1,3 +1,9 @@+2023-11-07+ * Version bump (3.17). (#466)++2023-11-05+ * Replace uses of deprecated functions. (#457)+ 2023-09-07 * Version bump (3.16.1). (#455)
copilot-prettyprinter.cabal view
@@ -1,6 +1,6 @@ cabal-version: >=1.10 name: copilot-prettyprinter-version: 3.16.1+version: 3.17 synopsis: A prettyprinter of Copilot Specifications. description: A prettyprinter of Copilot specifications.@@ -45,7 +45,7 @@ base >= 4.9 && < 5, pretty >= 1.0 && < 1.2, - copilot-core >= 3.16.1 && < 3.17+ copilot-core >= 3.17 && < 3.18 exposed-modules:
src/Copilot/PrettyPrint.hs view
@@ -71,7 +71,7 @@ Floor _ -> ppPrefix "floor" BwNot _ -> ppPrefix "~" Cast _ _ -> ppPrefix "(cast)"- GetField (Struct _) _ f -> \e -> ppInfix "#" e (text $ accessorname f)+ GetField (Struct _) _ f -> \e -> ppInfix "#" e (text $ accessorName f) GetField _ _ _ -> impossible "ppOp1" "Copilot.PrettyPrint" -- | Pretty-print a binary operation.