nri-env-parser 0.1.0.7 → 0.1.0.8
raw patch · 3 files changed
+26/−9 lines, 3 filesdep ~basedep ~textnew-uploader
Dependency ranges changed: base, text
Files
- CHANGELOG.md +4/−0
- LICENSE +1/−1
- nri-env-parser.cabal +21/−8
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.1.0.8++- Relax version bounds to encompass `text-2.0.x`, `base-4.16.x` and `template-haskell-2.18.x`+ # 0.1.0.7 - Relax version bounds to encompass `prelude-0.6.x`.
LICENSE view
@@ -1,6 +1,6 @@ BSD 3-Clause License -Copyright (c) 2021, NoRedInk+Copyright (c) 2022, NoRedInk All rights reserved. Redistribution and use in source and binary forms, with or without
nri-env-parser.cabal view
@@ -1,19 +1,19 @@ cabal-version: 1.18 --- This file has been generated from package.yaml by hpack version 0.34.2.+-- This file has been generated from package.yaml by hpack version 0.34.5. -- -- see: https://github.com/sol/hpack name: nri-env-parser-version: 0.1.0.7+version: 0.1.0.8 synopsis: Read environment variables as settings to build 12-factor apps.-description: Please see the README at <https://github.com/NoRedInk/haskell-libraries/tree/trunk/env-parser>.+description: Please see the README at <https://github.com/NoRedInk/haskell-libraries/tree/trunk/nri-env-parser#readme>. category: Web-homepage: https://github.com/NoRedInk/haskell-libraries#readme+homepage: https://github.com/NoRedInk/haskell-libraries/tree/trunk/nri-env-parser#readme bug-reports: https://github.com/NoRedInk/haskell-libraries/issues author: NoRedInk maintainer: haskell-open-source@noredink.com-copyright: 2021 NoRedInk Corp.+copyright: 2022 NoRedInk Corp. license: BSD3 license-file: LICENSE build-type: Simple@@ -34,12 +34,25 @@ Paths_nri_env_parser hs-source-dirs: src- default-extensions: DataKinds DeriveGeneric FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses NamedFieldPuns NoImplicitPrelude OverloadedStrings PartialTypeSignatures ScopedTypeVariables Strict TypeOperators+ default-extensions:+ DataKinds+ DeriveGeneric+ FlexibleContexts+ FlexibleInstances+ GeneralizedNewtypeDeriving+ MultiParamTypeClasses+ NamedFieldPuns+ NoImplicitPrelude+ OverloadedStrings+ PartialTypeSignatures+ ScopedTypeVariables+ Strict+ TypeOperators ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wpartial-fields -Wredundant-constraints -Wincomplete-uni-patterns -fplugin=NriPrelude.Plugin build-depends:- base >=4.12.0.0 && <4.16+ base >=4.12.0.0 && <4.17 , modern-uri >=0.3.1.0 && <0.4 , network-uri >=2.6.2.0 && <2.8 , nri-prelude >=0.1.0.0 && <0.7- , text >=1.2.3.1 && <1.3+ , text >=1.2.3.1 && <2.1 default-language: Haskell2010