packages feed

directory-layout 0.6.1.0 → 0.6.1.1

raw patch · 3 files changed

+13/−1 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- System.Directory.Layout.Internal: instance Typeable1 F
- System.Directory.Layout.Internal: instance Typeable1 Layout
- System.Directory.Layout.Interpreter: instance Typeable2 Validation
+ System.Directory.Layout.Internal: instance IsList Contents
+ System.Directory.Layout.Internal: instance Typeable F
+ System.Directory.Layout.Internal: instance Typeable Layout
+ System.Directory.Layout.Interpreter: instance Typeable Validation

Files

CHANGELOG.md view
@@ -1,3 +1,8 @@+0.6.1.1+=======++  * Missing test files in cabal tarball+ 0.6.1.0 ======= 
directory-layout.cabal view
@@ -1,5 +1,5 @@ name:                directory-layout-version:             0.6.1.0+version:             0.6.1.1 synopsis:            Directory layout DSL description:   Making, fitting, printing directory layouts@@ -93,6 +93,7 @@   main-is:     Spec.hs   other-modules:+    SpecHelper     System.Directory.LayoutSpec     System.Directory.Layout.InternalSpec     System.Directory.Layout.InterpreterSpec
+ test/SpecHelper.hs view
@@ -0,0 +1,6 @@+module SpecHelper where++import System.Unix.Directory (withTemporaryDirectory)++temporary :: (FilePath -> IO a) -> IO a+temporary = withTemporaryDirectory "directory-layout-XXXXXX"