vado 0.0.5 → 0.0.6
raw patch · 1 files changed
+5/−5 lines, 1 filesdep ~processPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: process
API changes (from Hackage documentation)
- System.Process.Vado: idFile :: MountSettings -> FilePath
- System.Process.Vado: instance Eq MountPoint
- System.Process.Vado: instance Ord MountPoint
- System.Process.Vado: instance Read MountSettings
- System.Process.Vado: instance Show MountPoint
- System.Process.Vado: instance Show MountSettings
- System.Process.Vado: localDir :: MountPoint -> FilePath
- System.Process.Vado: remoteDir :: MountPoint -> FilePath
- System.Process.Vado: remoteHost :: MountPoint -> Text
- System.Process.Vado: remoteUser :: MountPoint -> Text
- System.Process.Vado: sshfsHost :: MountSettings -> Text
- System.Process.Vado: sshfsPort :: MountSettings -> Int
- System.Process.Vado: sshfsUser :: MountSettings -> Text
+ System.Process.Vado: [idFile] :: MountSettings -> FilePath
+ System.Process.Vado: [localDir] :: MountPoint -> FilePath
+ System.Process.Vado: [remoteDir] :: MountPoint -> FilePath
+ System.Process.Vado: [remoteHost] :: MountPoint -> Text
+ System.Process.Vado: [remoteUser] :: MountPoint -> Text
+ System.Process.Vado: [sshfsHost] :: MountSettings -> Text
+ System.Process.Vado: [sshfsPort] :: MountSettings -> Int
+ System.Process.Vado: [sshfsUser] :: MountSettings -> Text
+ System.Process.Vado: instance GHC.Classes.Eq System.Process.Vado.MountPoint
+ System.Process.Vado: instance GHC.Classes.Ord System.Process.Vado.MountPoint
+ System.Process.Vado: instance GHC.Read.Read System.Process.Vado.MountSettings
+ System.Process.Vado: instance GHC.Show.Show System.Process.Vado.MountPoint
+ System.Process.Vado: instance GHC.Show.Show System.Process.Vado.MountSettings
Files
- vado.cabal +5/−5
vado.cabal view
@@ -1,5 +1,5 @@ name: vado-version: 0.0.5+version: 0.0.6 cabal-version: >=1.8 build-type: Simple license: MIT@@ -20,7 +20,7 @@ library build-depends: base >=4.0.0.0 && <4.9, attoparsec >=0.10.4.0 && <0.14, directory >=1.1.0.0 && <1.3, filepath >=1.2.0.0 && <1.5,- process >=1.0.1.5 && <1.3, text >=0.11.3.1 && <1.3+ process >=1.0.1.5 && <1.5, text >=0.11.3.1 && <1.3 exposed-modules: System.Process.Vado exposed: True buildable: True@@ -29,7 +29,7 @@ executable vado build-depends: base >=4.0.0.0 && <4.9, attoparsec >=0.10.4.0 && <0.14, directory >=1.1.0.0 && <1.3, filepath >=1.2.0.0 && <1.5,- process >=1.0.1.5 && <1.3, text >=0.11.3.1 && <1.3+ process >=1.0.1.5 && <1.5, text >=0.11.3.1 && <1.3 main-is: Main.hs buildable: True hs-source-dirs: src@@ -38,7 +38,7 @@ executable vamount build-depends: base >=4.0.0.0 && <4.9, attoparsec >=0.10.4.0 && <0.14, directory >=1.1.0.0 && <1.3, filepath >=1.2.0.0 && <1.5,- process >=1.0.1.5 && <1.3, text >=0.11.3.1 && <1.3+ process >=1.0.1.5 && <1.5, text >=0.11.3.1 && <1.3 main-is: Vamount.hs buildable: True hs-source-dirs: src@@ -47,7 +47,7 @@ test-suite test-vado build-depends: base >=4.0.0.0 && <4.9, QuickCheck -any, attoparsec >=0.10.4.0 && <0.14, directory >=1.1.0.0 && <1.3, filepath >=1.2.0.0 && <1.5,- process >=1.0.1.5 && <1.3, text >=0.11.3.1 && <1.4+ process >=1.0.1.5 && <1.5, text >=0.11.3.1 && <1.4 type: exitcode-stdio-1.0 main-is: Test.hs buildable: True