packages feed

zephyr-copilot 1.0.9 → 1.0.10

raw patch · 7 files changed

+50/−42 lines, 7 filesdep ~copilotdep ~copilot-c99dep ~copilot-language

Dependency ranges changed: copilot, copilot-c99, copilot-language, sketch-frp-copilot

Files

CHANGELOG view
@@ -1,3 +1,11 @@+zephyr-copilot (1.0.10) unstable; urgency=medium++  * Update to copilot-4.3.+  * Copilot has a =: operator now. Since =: is a core zephyr-copilot+    operator, the one from copilot is not re-exported by Copilot.Zephyr.++ -- Joey Hess <id@joeyh.name>  Wed, 19 Mar 2025 14:21:27 -0400+ zephyr-copilot (1.0.9) unstable; urgency=medium    * Update to copilot-3.18.1.
Examples/Blink/stack.yaml view
@@ -3,15 +3,15 @@ - '../..' resolver: lts-22.11 extra-deps: -- sketch-frp-copilot-1.0.10-- copilot-3.18.1-- copilot-c99-3.18.1-- copilot-core-3.18.1-- copilot-language-3.18.1-- copilot-libraries-3.18.1-- copilot-theorem-3.18.1-- copilot-interpreter-3.18.1-- copilot-prettyprinter-3.18.1+- sketch-frp-copilot-1.0.11+- copilot-4.3+- copilot-c99-4.3+- copilot-core-4.3+- copilot-language-4.3+- copilot-libraries-4.3+- copilot-theorem-4.3+- copilot-interpreter-4.3+- copilot-prettyprinter-4.3 - language-c99-0.2.0 - language-c99-simple-0.3.0 - language-c99-util-0.2.0
Examples/Button/stack.yaml view
@@ -3,15 +3,15 @@ - '../..' resolver: lts-22.11 extra-deps: -- sketch-frp-copilot-1.0.10-- copilot-3.18.1-- copilot-c99-3.18.1-- copilot-core-3.18.1-- copilot-language-3.18.1-- copilot-libraries-3.18.1-- copilot-theorem-3.18.1-- copilot-interpreter-3.18.1-- copilot-prettyprinter-3.18.1+- sketch-frp-copilot-1.0.11+- copilot-4.3+- copilot-c99-4.3+- copilot-core-4.3+- copilot-language-4.3+- copilot-libraries-4.3+- copilot-theorem-4.3+- copilot-interpreter-4.3+- copilot-prettyprinter-4.3 - language-c99-0.2.0 - language-c99-simple-0.3.0 - language-c99-util-0.2.0
Examples/Feather/stack.yaml view
@@ -3,15 +3,15 @@ - '../..' resolver: lts-22.11 extra-deps: -- sketch-frp-copilot-1.0.10-- copilot-3.18.1-- copilot-c99-3.18.1-- copilot-core-3.18.1-- copilot-language-3.18.1-- copilot-libraries-3.18.1-- copilot-theorem-3.18.1-- copilot-interpreter-3.18.1-- copilot-prettyprinter-3.18.1+- sketch-frp-copilot-1.0.11+- copilot-4.3+- copilot-c99-4.3+- copilot-core-4.3+- copilot-language-4.3+- copilot-libraries-4.3+- copilot-theorem-4.3+- copilot-interpreter-4.3+- copilot-prettyprinter-4.3 - language-c99-0.2.0 - language-c99-simple-0.3.0 - language-c99-util-0.2.0
src/Copilot/Zephyr.hs view
@@ -66,7 +66,7 @@ 	module X, ) where -import Language.Copilot as X hiding (Stream, ifThenElse)+import Language.Copilot as X hiding (Stream, ifThenElse, (=:)) import Language.Copilot (Stream) import Sketch.FRP.Copilot import Copilot.Zephyr.Internals
stack.yaml view
@@ -2,15 +2,15 @@ - '.' resolver: lts-22.11 extra-deps:-- sketch-frp-copilot-1.0.10-- copilot-3.18.1-- copilot-c99-3.18.1-- copilot-core-3.18.1-- copilot-language-3.18.1-- copilot-libraries-3.18.1-- copilot-theorem-3.18.1-- copilot-interpreter-3.18.1-- copilot-prettyprinter-3.18.1+- sketch-frp-copilot-1.0.11+- copilot-4.3+- copilot-c99-4.3+- copilot-core-4.3+- copilot-language-4.3+- copilot-libraries-4.3+- copilot-theorem-4.3+- copilot-interpreter-4.3+- copilot-prettyprinter-4.3 - language-c99-0.2.0 - language-c99-simple-0.3.0 - language-c99-util-0.2.0
zephyr-copilot.cabal view
@@ -1,5 +1,5 @@ Name: zephyr-copilot-Version: 1.0.9+Version: 1.0.10 Cabal-Version: >= 1.10 License: BSD3 Maintainer: Joey Hess <id@joeyh.name>@@ -72,10 +72,10 @@     Copilot.Zephyr.Main   Build-Depends:     base (>= 4.5 && < 5),-    sketch-frp-copilot (== 1.0.10),-    copilot (== 3.18.*),-    copilot-c99 (== 3.18.*),-    copilot-language (== 3.18.*),+    sketch-frp-copilot (== 1.0.11),+    copilot (== 4.3.*),+    copilot-c99 (== 4.3.*),+    copilot-language (== 4.3.*),     filepath,     directory,     mtl,