packages feed

exploring-interpreters 0.3.2.0 → 0.3.2.1

raw patch · 3 files changed

+6/−1 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Language.Explorer.Pure: fromExport :: Explorer p c o -> (Ref, [(Ref, c)], [(Ref, Ref, (p, o))]) -> Explorer p c o
+ Language.Explorer.Pure: toExport :: Explorer p c o -> (Ref, [(Ref, c)], [(Ref, Ref, (p, o))])

Files

CHANGELOG.md view
@@ -14,3 +14,6 @@ * This version adds functionality to support exporting and importing of execution environments. This functionality is provided via the 'toExport' and 'fromExport' functions. * Furthermore, this version also exports the initial reference.++## 0.3.2.1 -- 2021-01-10+* Add the toExport and fromExport functions to the exported functions in the pure module.
Language/Explorer/Pure.hs view
@@ -21,6 +21,8 @@     , getPathsFromTo     , getPathFromTo     , executionGraph+    , fromExport+    , toExport     ) where  import qualified Language.Explorer.Monadic as ExplorerM
exploring-interpreters.cabal view
@@ -1,7 +1,7 @@ cabal-version:       >=1.10  name:                exploring-interpreters-version:             0.3.2.0+version:             0.3.2.1 synopsis:            A generic exploring interpreter for exploratory programming -- synopsis: -- description: