packages feed

copilot-core 3.7 → 3.8

raw patch · 3 files changed

+9/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG view
@@ -1,3 +1,8 @@+2022-03-07+        * Version bump (3.8). (#298)+        * Replaces uses of the internal Dynamic with base:Data.Dynamic. (#266)+        * Mark package as uncurated to avoid modification. (#288)+ 2022-01-07         * Version bump (3.7). (#287)         * Make imports explicit, reorganize imports. (#277)
copilot-core.cabal view
@@ -1,6 +1,6 @@ cabal-version:       >=1.10 name:                copilot-core-version:             3.7+version:             3.8 synopsis:            An intermediate representation for Copilot. description:   Intermediate representation for Copilot.@@ -23,6 +23,8 @@ category:            Language, Embedded build-type:          Simple extra-source-files:  README.md, CHANGELOG++x-curation: uncurated  source-repository head     type:       git
src/Copilot/Core/Type/Dynamic.hs view
@@ -16,6 +16,7 @@ {-# LANGUAGE GADTs, KindSignatures, ScopedTypeVariables #-}  module Copilot.Core.Type.Dynamic+  {-# DEPRECATED "This module is deprecated in Copilot 3.8." #-}   ( Dynamic  (..)   , DynamicF (..)   , toDyn