diff --git a/System/Directory.hs b/System/Directory.hs index 5e77f4de..8f9b2c14 100644 --- a/System/Directory.hs +++ b/System/Directory.hs @@ -46,6 +46,7 @@ module System.Directory , canonicalizePath , makeRelativeToCurrentDirectory , findExecutable + , findExecutables , findFile , findFiles , findFilesWith @@ -755,7 +756,7 @@ findExecutable fileName = do -- | Given a file name, searches for the file and returns a list of all -- occurences that are executable. -- --- /Since: 1.2.1.0/ +-- /Since: 1.2.2.0/ findExecutables :: String -> IO [FilePath] findExecutables binary = do #if defined(mingw32_HOST_OS) diff --git a/changelog.md b/changelog.md index ed06b476..361b37ca 100644 --- a/changelog.md +++ b/changelog.md @@ -12,6 +12,8 @@ * Avoid stack overflow in `getDirectoryContents` [#17](https://github.com/haskell/directory/pull/17) + * Expose `findExecutables` [#14](https://github.com/haskell/directory/issues/14) + ## 1.2.1.0 *Mar 2014* * Bundled with GHC 7.8.1