packages feed

burrito 2.0.1.8 → 2.0.1.9

raw patch · 3 files changed

+19/−17 lines, 3 filesdep ~QuickCheckPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: QuickCheck

API changes (from Hackage documentation)

Files

LICENSE.markdown view
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Taylor Fausak+Copyright (c) 2024 Taylor Fausak  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
burrito.cabal view
@@ -1,8 +1,6 @@ cabal-version: 2.2- name: burrito-version: 2.0.1.8-+version: 2.0.1.9 synopsis: Parse and render URI templates. description:   Burrito is a Haskell library for parsing and rendering URI templates.@@ -23,7 +21,10 @@  build-type: Simple category: Network-extra-source-files: CHANGELOG.markdown README.markdown+extra-source-files:+  CHANGELOG.markdown+  README.markdown+ license-file: LICENSE.markdown license: MIT maintainer: Taylor Fausak@@ -39,13 +40,14 @@  common library   build-depends:-    , base >= 4.16.0 && < 4.20-    , bytestring >= 0.11.3 && < 0.13-    , containers >= 0.6.5 && < 0.7-    , parsec >= 3.1.15 && < 3.2-    , template-haskell >= 2.18.0 && < 2.22-    , text >= 1.2.5 && < 1.3 || >= 2.0 && < 2.2-    , transformers >= 0.5.6 && < 0.7+    base >=4.16.0 && <4.20,+    bytestring >=0.11.3 && <0.13,+    containers >=0.6.5 && <0.7,+    parsec >=3.1.15 && <3.2,+    template-haskell >=2.18.0 && <2.22,+    text >=1.2.5 && <1.3 || >=2.0 && <2.2,+    transformers >=0.5.6 && <0.7,+   default-language: Haskell2010   ghc-options:     -Weverything@@ -68,7 +70,6 @@  common executable   import: library-   build-depends: burrito   ghc-options:     -rtsopts@@ -77,7 +78,6 @@  library   import: library-   exposed-modules:     Burrito     Burrito.Internal.Expand@@ -100,14 +100,15 @@     Burrito.Internal.Type.Token     Burrito.Internal.Type.Value     Burrito.Internal.Type.Variable+   hs-source-dirs: source/library  test-suite burrito-test-suite   import: executable-   build-depends:-    , hspec >= 2.9.7 && < 2.12-    , QuickCheck >= 2.13.2 && < 2.15+    QuickCheck >=2.13.2 && <2.16,+    hspec >=2.9.7 && <2.12,+   hs-source-dirs: source/test-suite   main-is: Main.hs   type: exitcode-stdio-1.0
source/test-suite/Main.hs view
@@ -1,3 +1,4 @@+{- hlint ignore "Redundant bracket" -} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE QuasiQuotes #-} {-# OPTIONS_GHC -Wno-monomorphism-restriction #-}