From 9c88fc99b9e29d3149ba17914bb0e984cad41fd0 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 8 Nov 2024 09:45:19 -0500 Subject: [PATCH 1/2] Require building with copilot-core-4.1. Refs #25. --- copilot-bluespec.cabal | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/copilot-bluespec.cabal b/copilot-bluespec.cabal index f63cb28..81cb355 100644 --- a/copilot-bluespec.cabal +++ b/copilot-bluespec.cabal @@ -1,6 +1,6 @@ cabal-version : >= 1.10 name : copilot-bluespec -version : 4.0 +version : 4.1 synopsis : A compiler for Copilot targeting FPGAs. description : This package is a back-end from Copilot to FPGAs in Bluespec. @@ -44,7 +44,7 @@ library , filepath >= 1.4 && < 1.5 , pretty >= 1.1.2 && < 1.2 - , copilot-core >= 4.0 && < 4.1 + , copilot-core >= 4.1 && < 4.2 , language-bluespec >= 0.1 && < 0.2 exposed-modules : Copilot.Compile.Bluespec From 050a57d768fa6cec9ee33d0b0f9fb07eb184a215 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Fri, 8 Nov 2024 09:45:41 -0500 Subject: [PATCH 2/2] Document changes in CHANGELOG. Refs #25. --- CHANGELOG | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 0d2b80a..818f7e0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-11-08 + * Version bump (4.1). (#25) + 2024-09-09 * Version bump (4.0). (#23) * Support translating Copilot array updates to Bluespec. (#19)