posix-paths 0.2.0.5 → 0.2.1.0
raw patch · 3 files changed
+4/−4 lines, 3 filesdep ~unixPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: unix
API changes (from Hackage documentation)
Files
- LICENSE +2/−2
- posix-paths.cabal +1/−1
- src/System/Posix/FilePath.hs +1/−1
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2013, John Lato+Copyright (c) 2013, John Lato, Google Inc All rights reserved. @@ -13,7 +13,7 @@ disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of John Lato nor the names of other+ * Neither the names of John Lato, Google Inc, nor the names of other contributors may be used to endorse or promote products derived from this software without specific prior written permission.
posix-paths.cabal view
@@ -1,5 +1,5 @@ name: posix-paths-version: 0.2.0.5+version: 0.2.1.0 license: BSD3 license-file: LICENSE maintainer: jwlato@gmail.com
src/System/Posix/FilePath.hs view
@@ -200,7 +200,7 @@ -- prop> \path -> uncurry addExtension (splitExtensions path) == path splitExtensions :: RawFilePath -> (RawFilePath, ByteString) splitExtensions x = if BS.null basename- then (x,BS.empty)+ then (path,fileExt) else (BS.append path basename,fileExt) where (path,file) = splitFileNameRaw x