packages feed

looper 0.0.0.1 → 0.0.0.2

raw patch · 3 files changed

+11/−3 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Looper: readLooperEnvironment :: String -> String -> [(String, String)] -> LooperEnvironment

Files

ChangeLog.md view
@@ -2,6 +2,13 @@    ## [Unreleased] +## [0.0.0.2] - 2019-05-15++### Changed++* Exposed 'readLooperEnvironment'+* Doc fix+ ## [0.0.0.1] - 2019-05-15  ### Changed
looper.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 566c0c3e92e15892921c8e359a0198ff060b3eb62a71c768591cdb5ece10d8d6+-- hash: 89647c3d09f7fa4d71e44a70470be2d4892fa2d52a50236d39c23d195fe84eae  name:           looper-version:        0.0.0.1+version:        0.0.0.2 description:    Please see the README on GitHub at <https://github.com/NorfairKing/looper#readme> homepage:       https://github.com/NorfairKing/looper#readme bug-reports:    https://github.com/NorfairKing/looper/issues
src/Looper.hs view
@@ -11,6 +11,7 @@   , getLooperFlags   , LooperEnvironment(..)   , getLooperEnvironment+  , readLooperEnvironment   , LooperConfiguration(..)   , LooperSettings(..)   , deriveLooperSettings@@ -124,7 +125,7 @@     }   deriving (Show, Eq, Generic) --- | Get a 'LooperEnvironment' from a the environment+-- | Get a 'LooperEnvironment' from the environment getLooperEnvironment ::      String -- ^ Prefix for each variable (best to make this all-caps)   -> String -- ^ Name of the looper (best to make this all-caps too)