mps 2009.8.16 → 2009.8.18
raw patch · 4 files changed
+17/−2 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ MPSUTF8: rm :: String -> IO ()
+ MPSUTF8: rm_rf :: String -> IO ()
Files
- changelog.md +9/−0
- mps.cabal +1/−1
- src/MPS/Light.hs +1/−1
- src/MPS/UTF8.hs +6/−0
changelog.md view
@@ -1,3 +1,12 @@+2009.8.18+---------++### Feature++* make - infixl, differ from $+* more unix style io wrapper+* update example+ 2009.8.16 ---------
mps.cabal view
@@ -1,5 +1,5 @@ Name: mps-Version: 2009.8.16+Version: 2009.8.18 Build-type: Simple Synopsis: simply oo Description: DSL that allows one to write Haskell from left to right
src/MPS/Light.hs view
@@ -35,7 +35,7 @@ {-# INLINE (-) #-} (-) :: (a -> b) -> a -> b f - x = f x-infixr 0 -+infixl 0 - (<->) :: (Num a) => a -> a -> a (<->) = (Prelude.-)
src/MPS/UTF8.hs view
@@ -39,3 +39,9 @@ strip :: String -> String strip x = MPS.strip (x.u2b) .b2u++rm :: String -> IO ()+rm = u2b > removeFile++rm_rf :: String -> IO ()+rm_rf = u2b > removeDirectoryRecursive