Skip to content

Commit 52185a5

Browse files
Merge branch 'dev-remove-deprecations'. Close #250.
Several definitions were deprecated in 3.3 and can be removed in 3.6. These include: - Copilot.Core.MakeTags - Copilot.Language.Operators.Extern.funArg As we reach 3 versions without detecting any need for it from any internal or external work, these definitions are now ready to be removed.
2 parents e3f801e + 11875d8 commit 52185a5

File tree

6 files changed

+2
-122
lines changed

6 files changed

+2
-122
lines changed

copilot-core/CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
2021-09-16
2+
* Remove deprecated module. (#250)
23
* Fix outdated/broken links. (#252)
34

45
2021-08-19

copilot-core/copilot-core.cabal

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ library
5555
Copilot.Core.Interpret
5656
Copilot.Core.Interpret.Eval
5757
Copilot.Core.Interpret.Render
58-
Copilot.Core.MakeTags
5958
Copilot.Core.Operators
6059
Copilot.Core.Spec
6160
Copilot.Core.Locals

copilot-core/src/Copilot/Core.hs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ module Copilot.Core
2626
( module Copilot.Core.Error
2727
, module Copilot.Core.Expr
2828
, module Copilot.Core.External
29-
, module Copilot.Core.MakeTags
3029
, module Copilot.Core.Operators
3130
, module Copilot.Core.Spec
3231
, module Copilot.Core.Type
@@ -39,7 +38,6 @@ module Copilot.Core
3938
import Copilot.Core.Error
4039
import Copilot.Core.Expr
4140
import Copilot.Core.External
42-
import Copilot.Core.MakeTags
4341
import Copilot.Core.Operators
4442
import Copilot.Core.Spec
4543
import Copilot.Core.Type

copilot-core/src/Copilot/Core/MakeTags.hs

Lines changed: 0 additions & 113 deletions
This file was deleted.

copilot-language/CHANGELOG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
2021-09-16
2+
* Remove deprecated function. (#250)
23
* Fix outdated/broken links. (#252)
34

45
2021-08-19

copilot-language/src/Copilot/Language/Operators/Extern.hs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ module Copilot.Language.Operators.Extern
1818
, externI32
1919
, externI64
2020
, externD
21-
, funArg
2221
) where
2322

2423
import Copilot.Core (Typed)
@@ -42,11 +41,6 @@ extern :: Typed a
4241
-> Stream a
4342
extern = Extern
4443

45-
-- | Deprecated.
46-
funArg :: Typed a => Stream a -> Arg
47-
funArg = Arg
48-
{-# DEPRECATED funArg "funArg is deprecated" #-}
49-
5044
--------------------------------------------------------------------------------
5145

5246
-- | Create a stream carrying values of type Bool, populated by an external

0 commit comments

Comments
 (0)