symantic-base 0.2.0.20210731 → 0.2.0.20210831
raw patch · 2 files changed
+13/−11 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- default.nix +2/−1
- symantic-base.cabal +11/−10
default.nix view
@@ -1,4 +1,5 @@ { pkgs ? import <nixpkgs> {}+, inputs ? {} , ghc ? null , withHoogle ? false }:@@ -8,7 +9,7 @@ then pkgs.haskellPackages else pkgs.haskell.packages.${ghc}; hs = haskellPackages.extend (with pkgs.haskell.lib; hself: hsuper: {- symantic-base = buildFromSdist (hself.callCabal2nix "symantic-base" ./. {});+ symantic-base = buildFromSdist (hself.callCabal2nix "symantic-base" ./. {}); }); in hs.symantic-base // { shell = hs.shellFor {
symantic-base.cabal view
@@ -1,13 +1,19 @@ cabal-version: 3.0+name: symantic-base+maintainer: mailto:~julm/symantic-base@todo.hut.sourcephile.fr+bug-reports: https://todo.hut.sourcephile.fr/~julm/symantic-base+homepage: https://git.hut.sourcephile.fr/~julm/symantic-base+author: Julien Moutinho <julm+symantic-base@sourcephile.fr>+copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr> license: AGPL-3.0-or-later license-file: LICENSES/AGPL-3.0-or-later.txt-name: symantic-base -- PVP: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.2.0.20210731+version: 0.2.0.20210831+stability: experimental category: Data Structures-synopsis: Commonly useful symantics for Embedded Domain-Specific Languages (EDSL)+synopsis: Basic symantics combinators for Embedded Domain-Specific Languages (EDSL) description: This is a work-in-progress collection of basic tagless-final combinators, along with some advanced utilities to exploit them.@@ -43,14 +49,9 @@ * @Symantic.Fixity@ gathers utilities for parsing or viewing infix, prefix and postfix combinators.-stability: experimental-author: Julien Moutinho <julm+symantic-base@sourcephile.fr>-maintainer: Julien Moutinho <julm+symantic-base@sourcephile.fr>-bug-reports: https://mails.sourcephile.fr/inbox/symantic-base-copyright: Julien Moutinho <julm+symantic-base@sourcephile.fr>- build-type: Simple tested-with: GHC==8.10.4+extra-doc-files: extra-source-files: cabal.project default.nix@@ -62,7 +63,7 @@ source-repository head type: git- location: git://git.sourcephile.fr/haskell/symantic-base+ location: https://git.hut.sourcephile.fr/~julm/symantic-base library hs-source-dirs: src