packages feed

sext 0.1.3 → 0.1.3.1

raw patch · 3 files changed

+13/−16 lines, 3 filesdep ~sextdep ~template-haskelldep ~vectorPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: sext, template-haskell, vector

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,12 +1,10 @@-# Change Log for [sext](https://github.com/dzhus/sext)--### 0.1.3+# 0.1.3.1 -#### Added+- GHC 8.2.x support -- `ShortByteString` support+# 0.1.3 -#### Fixed+- Added `ShortByteString` support -- a bug in `createLeft` which failed to actually pad/truncate strings-  (reported by Altai-man https://github.com/dzhus/sext/issues/4)+- Fixed a bug in `createLeft` which failed to actually pad/truncate+  strings (reported by Altai-man https://github.com/dzhus/sext/issues/4)
sext.cabal view
@@ -1,5 +1,5 @@ name: sext-version: 0.1.3+version: 0.1.3.1 cabal-version: >=1.10 build-type: Simple license: BSD3@@ -45,7 +45,7 @@          if flag(vector)         build-depends:-            vector <0.12+            vector <0.13         cpp-options: -DWITH_VECTOR     exposed-modules:         Data.Sext@@ -53,21 +53,21 @@         Data.Sext.TH     build-depends:         base <5,-        template-haskell <2.12+        template-haskell <2.13     default-language: Haskell2010     hs-source-dirs: src     other-modules:         Paths_sext-    ghc-options: -Wall -Wall+    ghc-options: -Wall -test-suite sext-example+test-suite  sext-example     type: exitcode-stdio-1.0     main-is: Main.hs     build-depends:         base <5,-        template-haskell <2.12,+        template-haskell <2.13,         bytestring <0.11,-        sext <0.2,+        sext -any,         tasty <0.12,         tasty-hunit <0.10     default-language: Haskell2010
src/Data/Sext.hs view
@@ -2,7 +2,6 @@ {-# LANGUAGE DataKinds #-} {-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE InstanceSigs #-}-{-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-}