Skip to content

Commit

Permalink
Release v0.3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
roman committed Mar 28, 2018
1 parent ec44b3b commit 859d4d9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
5 changes: 5 additions & 0 deletions .dir-locals.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")

((haskell-mode
(intero-targets "etc:lib" "etc:test:etc-testsuite")))
30 changes: 16 additions & 14 deletions etc/etc.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
-- see: https://github.com/sol/hpack

name: etc
version: 0.2.0.1
version: 0.3.0.0
synopsis: Declarative configuration spec for Haskell projects
description: `etc` gathers configuration values from multiple sources (cli options, OS
environment variables, files) using a declarative spec file that defines where
these values are to be found and located in a configuration map.
category: Configuration, System
homepage: https://github.com/roman/Haskell-etc
author: Roman Gonzalez
maintainer: [email protected]
copyright: 2017 Roman Gonzalez
maintainer: [email protected]
copyright: 2017, 2018 Roman Gonzalez
tested-with: GHC == 8.0.1, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.2
license: MIT
license-file: LICENSE
Expand Down Expand Up @@ -52,13 +52,15 @@ library
hs-source-dirs: src
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, aeson >=0.11
, rio >= 0.0.1.0
, typed-process >= 0.1.1
, unliftio >= 0.1.1.0
, text >= 0.0.1.0
, hashable >=1.2
base >=4.7 && <5
, aeson >=0.11
, hashable >=1.2
, rio >=0.0.1.0
, text >=0.0.1.0
-- NOTE: bellow are rio dependencies that help the stack resolver, not
-- really required by etc
, typed-process >=0.1.1
, unliftio >=0.1.1.0

exposed-modules:
System.Etc
Expand Down Expand Up @@ -110,10 +112,10 @@ test-suite etc-testsuite
test
ghc-options: -Wall
build-depends:
base >=4.7
, aeson >=0.11
, rio >=0.0.1.0
, tasty >=0.11
base >=4.7
, aeson >=0.11
, rio >=0.0.1.0
, tasty >=0.11
, tasty-hunit >=0.9
, etc

Expand Down
2 changes: 1 addition & 1 deletion make/sdist.make
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
################################################################################

PROJECT_NAME := etc
PROJECT_VERSION := 0.2.0.1
PROJECT_VERSION := 0.3.0.0

STACK := stack --resolver nightly

Expand Down

0 comments on commit 859d4d9

Please sign in to comment.