packages feed

th-env 0.1.0.1 → 0.1.0.2

raw patch · 4 files changed

+51/−37 lines, 4 filesdep ~markdown-unlitdep ~template-haskell

Dependency ranges changed: markdown-unlit, template-haskell

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.1.0.2] - 2020-06-03++### Changed++- Relaxed dependency version bounds+ ## [0.1.0.1] - 2020-02-21  ### Changed@@ -8,5 +14,6 @@  ## [0.1.0.0] - 2019-05-01 +[0.1.0.2]: https://github.com/dzhus/th-env/compare/0.1.0.1...0.1.0.2 [0.1.0.1]: https://github.com/dzhus/th-env/compare/0.1.0.0...0.1.0.1 [0.1.0.0]: https://github.com/dzhus/th-env/tree/0.1.0.0
README.lhs view
@@ -1,6 +1,6 @@ # th-env -[![Travis CI build status](https://travis-ci.org/dzhus/th-env.svg)](https://travis-ci.org/dzhus/th-env)+[![Build & test](https://github.com/dzhus/th-env/workflows/Build%20&%20test/badge.svg)](https://github.com/dzhus/th-env/actions) [![Hackage](https://img.shields.io/hackage/v/th-env.svg?colorB=5e5184&style=flat)](https://hackage.haskell.org/package/th-env) [![Hackage deps](https://img.shields.io/hackage-deps/v/th-env.svg)](http://packdeps.haskellers.com/feed?needle=th-env) 
README.md view
@@ -1,6 +1,6 @@ # th-env -[![Travis CI build status](https://travis-ci.org/dzhus/th-env.svg)](https://travis-ci.org/dzhus/th-env)+[![Build & test](https://github.com/dzhus/th-env/workflows/Build%20&%20test/badge.svg)](https://github.com/dzhus/th-env/actions) [![Hackage](https://img.shields.io/hackage/v/th-env.svg?colorB=5e5184&style=flat)](https://hackage.haskell.org/package/th-env) [![Hackage deps](https://img.shields.io/hackage-deps/v/th-env.svg)](http://packdeps.haskellers.com/feed?needle=th-env) 
th-env.cabal view
@@ -1,45 +1,52 @@ cabal-version: 1.12-name: th-env-version: 0.1.0.1-license: BSD3-license-file: LICENSE-maintainer: dima@dzhus.org-author: Dmitry Dzhus-homepage: https://github.com/dzhus/th-env#readme-bug-reports: https://github.com/dzhus/th-env/issues-synopsis: Template Haskell splice that expands to an environment variable-description:-    TH splice that expands to an environment variable value. Can be used to embed build-time parameters in your application.-category: Template Haskell-build-type: Simple++-- This file has been generated from package.yaml by hpack version 0.33.0.+--+-- see: https://github.com/sol/hpack+--+-- hash: 76ed87ab6f88fda5e565d31c0e99e3fb972ff35c3ec1163dd76dca3e30284c9d++name:           th-env+version:        0.1.0.2+synopsis:       Template Haskell splice that expands to an environment variable+description:    TH splice that expands to an environment variable value. Can be used to embed build-time parameters in your application.+category:       Template Haskell+homepage:       https://github.com/dzhus/th-env#readme+bug-reports:    https://github.com/dzhus/th-env/issues+author:         Dmitry Dzhus+maintainer:     dima@dzhus.org+license:        BSD3+license-file:   LICENSE+build-type:     Simple extra-source-files:     CHANGELOG.md     README.md  source-repository head-    type: git-    location: https://github.com/dzhus/th-env+  type: git+  location: https://github.com/dzhus/th-env  library-    exposed-modules:-        Language.Haskell.TH.Env-    hs-source-dirs: src-    other-modules:-        Paths_th_env-    default-language: Haskell2010-    ghc-options: -Wall -Wcompat-    build-depends:-        base <5,-        template-haskell <2.16+  exposed-modules:+      Language.Haskell.TH.Env+  other-modules:+      Paths_th_env+  hs-source-dirs:+      src+  ghc-options: -Wall -Wcompat+  build-depends:+      base <5+    , template-haskell+  default-language: Haskell2010  test-suite readme-    type: exitcode-stdio-1.0-    main-is: README.lhs-    other-modules:-        Paths_th_env-    default-language: Haskell2010-    ghc-options: -Wall -Wcompat -pgmL markdown-unlit-    build-depends:-        base <5,-        markdown-unlit <0.6,-        th-env -any+  type: exitcode-stdio-1.0+  main-is: README.lhs+  other-modules:+      Paths_th_env+  ghc-options: -Wall -Wcompat -pgmL markdown-unlit+  build-depends:+      base <5+    , markdown-unlit+    , th-env+  default-language: Haskell2010