path-binary-instance 0.1.0.0 → 0.1.0.1
raw patch · 4 files changed
+14/−2 lines, 4 files
Files
- ChangeLog.md +3/−1
- README.md +2/−0
- path-binary-instance.cabal +1/−1
- src/Path/Binary.hs +8/−0
ChangeLog.md view
@@ -1,3 +1,5 @@ # Changelog for path-binary-instance -## Unreleased changes+# v0.1.0.0++* Binary instance for path.
README.md view
@@ -1,1 +1,3 @@ # path-binary-instance++`Binary` instance for [path](https://hackage.haskell.org/package/path).
path-binary-instance.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: path-binary-instance-version: 0.1.0.0+version: 0.1.0.1 synopsis: Binary instance for Path. description: Binary instance for Path. category: Filesystem
src/Path/Binary.hs view
@@ -1,3 +1,11 @@+{- |+ Module : Path.Binary+ License : MIT+ Stability : experimental++Binary instance for `Path`.+-}+{-# OPTIONS_GHC -fno-warn-orphans #-} {-# LANGUAGE DeriveAnyClass #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE StandaloneDeriving #-}