From 2d07adc2663cd71e5c49749627290daf7434e78e Mon Sep 17 00:00:00 2001 From: Connor James Date: Wed, 10 Feb 2021 10:17:17 -0800 Subject: [PATCH] Bump megaparsec dependency (bump 0.1.3) --- git-config.cabal | 4 ++-- package.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/git-config.cabal b/git-config.cabal index 4ce9e90..2c477a2 100644 --- a/git-config.cabal +++ b/git-config.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: 0f49020a8cdb5c1fe3c4e47e6cb7ac3faa25db36208c7e09265b20c9769c645b +-- hash: c8635f17733d63dd6af8855a6a8ad55dffb4644076ccbf17df337f48bd608e9d name: git-config version: 0.1.2 @@ -48,7 +48,7 @@ library ghc-options: -Wall -fno-warn-partial-type-signatures -fno-warn-name-shadowing -fwarn-tabs -fwarn-unused-imports -fwarn-missing-signatures -fwarn-incomplete-patterns build-depends: base >=4.7 && <5 - , megaparsec >=7 && <9 + , megaparsec >=7 && <10 , text , unordered-containers exposed-modules: diff --git a/package.yaml b/package.yaml index 6bdb6ad..63e8de3 100644 --- a/package.yaml +++ b/package.yaml @@ -1,5 +1,5 @@ name: git-config -version: '0.1.2' +version: '0.1.3' synopsis: A simple parser for Git configuration files description: | git-config is a simple 'megaparsec' parser for Git configuration files. @@ -46,7 +46,7 @@ library: source-dirs: src dependencies: - unordered-containers - - megaparsec >=7 && < 9 + - megaparsec >=7 && < 10 - text exposed-modules: - Text.GitConfig.Parser