packages feed

yarn-lock 0.3.3 → 0.3.4

raw patch · 3 files changed

+15/−4 lines, 3 filesdep ~protolude

Dependency ranges changed: protolude

Files

CHANGELOG.md view
@@ -5,6 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.3.4] - 2017-10-04++### Fixed+- Support for Protolude 0.2.* ((<>) is exported from Monoid, not Semigroup)++## [0.3.3] - 2017-10-04++### Fixed+- Remove (broken) support for megaparsec 6.*+ ## [0.3.2] - 2017-10-02  ### Fixed
src/Yarn/Lock.hs view
@@ -18,7 +18,8 @@ , LockfileError(..), PackageErrorInfo(..) ) where -import Protolude+import Protolude hiding ((<>))+import Data.Semigroup ((<>)) import qualified Data.Text as T import qualified Data.List.NonEmpty as NE import qualified Text.Megaparsec as MP
yarn-lock.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack  name:           yarn-lock-version:        0.3.3+version:        0.3.4 synopsis:       Represent and parse yarn.lock files description:    Types and parser for the lock file format of the npm successor yarn. All modules should be imported qualified. category:       Data@@ -32,7 +32,7 @@     , containers     , text     , megaparsec == 5.*-    , protolude >= 0.1+    , protolude == 0.1.* || == 0.2.*     , either == 4.*   exposed-modules:       Data.MultiKeyedMap@@ -56,7 +56,7 @@     , containers     , text     , megaparsec == 5.*-    , protolude >= 0.1+    , protolude == 0.1.* || == 0.2.*     , either == 4.*     , yarn-lock     , ansi-wl-pprint >= 0.6