path 0.2.0 → 0.3.0
raw patch · 2 files changed
+2/−3 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
- Path.Internal: instance Constructor C1_0Path
- Path.Internal: instance Datatype D1Path
- Path.Internal: instance Generic (Path b t)
Files
- path.cabal +1/−1
- src/Path/Internal.hs +1/−2
path.cabal view
@@ -1,5 +1,5 @@ name: path-version: 0.2.0+version: 0.3.0 synopsis: Path description: Path license: BSD3
src/Path/Internal.hs view
@@ -10,7 +10,6 @@ where import Data.Data-import GHC.Generics -- | Path of some base and type. --@@ -22,7 +21,7 @@ -- All directories end in a trailing separator. There are no duplicate -- path separators @\/\/@, no @..@, no @.\/@, no @~\/@, etc. newtype Path b t = Path FilePath- deriving (Typeable,Generic)+ deriving (Typeable) -- | String equality. --