Encode 1.3.3 → 1.3.4
raw patch · 6 files changed
+18/−18 lines, 6 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Encode.cabal +1/−1
- Encode.hs +3/−3
- Encode/Arabic/ArabTeX.hs +5/−5
- Encode/Arabic/ArabTeX/ZDMG.hs +5/−5
- Exec/Decode/Main.hs +2/−2
- Exec/Encode/Main.hs +2/−2
Encode.cabal view
@@ -1,5 +1,5 @@ name: Encode -version: 1.3.3 +version: 1.3.4 license: GPL license-file: LICENSE extra-source-files: INSTALL, LicenseBSD, LicenseGPL, Setup.PL
Encode.hs view
@@ -1,5 +1,5 @@ -- -------------------------------------------------------------------------- --- $Revision: 972 $ $Date: 2010-06-20 01:49:29 +0200 (Sun, 20 Jun 2010) $ +-- $Revision: 974 $ $Date: 2010-06-20 12:44:41 +0200 (Sun, 20 Jun 2010) $ -- -------------------------------------------------------------------------- -- | @@ -43,9 +43,9 @@ import Version -version = Version [1, 3, min build 3] [] +version = Version [1, 3, min build 4] [] - where Version [build] [] = revised "$Revision: 972 $" + where Version [build] [] = revised "$Revision: 974 $" -- | The datatype introduced for the internal representation of Unicode code
Encode/Arabic/ArabTeX.hs view
@@ -1,5 +1,5 @@ -- -------------------------------------------------------------------------- --- $Revision: 937 $ $Date: 2010-02-14 13:54:54 +0100 (Sun, 14 Feb 2010) $ +-- $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $ -- -------------------------------------------------------------------------- -- | @@ -41,7 +41,7 @@ import Version -version = revised "$Revision: 937 $" +version = revised "$Revision: 967 $" data ArabTeX = ArabTeX | Lagally | TeX @@ -673,19 +673,19 @@ <+> do syms "\NUL" - ">" |.| [">"] |+| "<" |.| ["<"] + ">" |.| [">"] |+| "<" |.| ["<"] `others` (\ s -> (Just . return) ("\NUL", [[s]])) <+> do syms "<" - ">" |.| ["<", ">"] + ">" |.| ["<", ">"] |+| "<" |.| ["<", "<"] `others` (\ s -> (Just . return) ("\NUL", ["<", [s]])) <+> do syms ">" - "<" |.| [">", "<"] + "<" |.| [">", "<"] |+| ">" |.| [">", ">"] `others` (\ s -> (Just . return) ("\NUL", [">", [s]]))
Encode/Arabic/ArabTeX/ZDMG.hs view
@@ -1,5 +1,5 @@ -- -------------------------------------------------------------------------- --- $Revision: 934 $ $Date: 2010-02-13 17:26:58 +0100 (Sat, 13 Feb 2010) $ +-- $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $ -- -------------------------------------------------------------------------- -- | @@ -39,7 +39,7 @@ import Version -version = revised "$Revision: 934 $" +version = revised "$Revision: 967 $" data ZDMG = ZDMG | ArabTeX_ZDMG @@ -450,19 +450,19 @@ <+> do syms "\NUL" - ">" |.| [">"] |+| "<" |.| ["<"] + ">" |.| [">"] |+| "<" |.| ["<"] `others` (\ s -> (Just . return) ("\NUL", [[s]])) <+> do syms "<" - ">" |.| ["<", ">"] + ">" |.| ["<", ">"] |+| "<" |.| ["<", "<"] `others` (\ s -> (Just . return) ("\NUL", ["<", [s]])) <+> do syms ">" - "<" |.| [">", "<"] + "<" |.| [">", "<"] |+| ">" |.| [">", ">"] `others` (\ s -> (Just . return) ("\NUL", [">", [s]]))
Exec/Decode/Main.hs view
@@ -1,5 +1,5 @@ -- -------------------------------------------------------------------------- --- $Revision: 947 $ $Date: 2010-04-29 23:53:39 +0200 (Thu, 29 Apr 2010) $ +-- $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $ -- -------------------------------------------------------------------------- -- | @@ -80,7 +80,7 @@ PrintVersion : _ -> tell (unlines [copyleft, unwords ["Encode Arabic", showVersion Main.version, - "April 2010"]]) + "June 2010"]]) LineOriented : _ -> execute True (tail opts) nons _ -> execute False opts nons
Exec/Encode/Main.hs view
@@ -1,5 +1,5 @@ -- -------------------------------------------------------------------------- --- $Revision: 947 $ $Date: 2010-04-29 23:53:39 +0200 (Thu, 29 Apr 2010) $ +-- $Revision: 967 $ $Date: 2010-06-15 22:43:50 +0200 (Tue, 15 Jun 2010) $ -- -------------------------------------------------------------------------- -- | @@ -80,7 +80,7 @@ PrintVersion : _ -> tell (unlines [copyleft, unwords ["Encode Arabic", showVersion Main.version, - "April 2010"]]) + "June 2010"]]) LineOriented : _ -> execute True (tail opts) nons _ -> execute False opts nons