packages feed

hyphenation 0.3 → 0.4

raw patch · 4 files changed

+13/−9 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

- Text.Hyphenation.Language: Farsi :: Language
- Text.Hyphenation.Language: farsi :: Hyphenator

Files

CHANGELOG.markdown view
@@ -1,3 +1,7 @@+0.4+---+* Removed Farsi. We had no pattern files.+ 0.3 --- * Added Friulan, Piedmontese, Romansh and Thai language hyphenations.
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2012 Edward Kmett+Copyright 2012-2013 Edward Kmett  All rights reserved. 
hyphenation.cabal view
@@ -1,6 +1,6 @@ name:          hyphenation category:      Text-version:       0.3+version:       0.4 license:       BSD3 cabal-version: >= 1.8 license-file:  LICENSE
src/Text/Hyphenation/Language.hs view
@@ -5,7 +5,7 @@ ----------------------------------------------------------------------------- -- | -- Module      :  Text.Hyphenation.Language--- Copyright   :  (C) 2012 Edward Kmett,+-- Copyright   :  (C) 2012-2013 Edward Kmett, --                (C) 2007 Ned Batchelder -- License     :  BSD-style (see the languageAffix LICENSE) --@@ -22,7 +22,7 @@   -- * Provided language hyphenators   , afrikaans, basque, bengali, bulgarian, catalan, chinese   , coptic, croatian, czech, danish, dutch, english_US, english_GB, esperanto-  , estonian, ethiopic, farsi, finnish, french, friulan, galician, german_1901, german_1996+  , estonian, ethiopic, {- farsi, -} finnish, french, friulan, galician, german_1901, german_1996   , german_Swiss, greek_Ancient, greek_Mono, greek_Poly, gujarati, hindi, hungarian   , icelandic, indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin   , latvian, lithuanian, malayalam, marathi, mongolian, norwegian_Bokmal@@ -76,7 +76,7 @@   | Esperanto   | Estonian   | Ethiopic-  | Farsi+  -- | Farsi   | Finnish   | French   | Friulan@@ -148,7 +148,7 @@   Esperanto -> "eo"   Estonian -> "et"   Ethiopic -> "mul-ethi"-  Farsi -> "fa"+  -- Farsi -> "fa"   Finnish -> "fi"   French -> "fr"   Friulan -> "fur"@@ -231,7 +231,7 @@ -- | Hyphenators for a wide array of languages. afrikaans, basque, bengali, bulgarian, catalan, chinese,  coptic, croatian, czech, danish, dutch, esperanto,- estonian, ethiopic, farsi, finnish, friulan, galician, german_1901, german_1996,+ estonian, ethiopic, {- farsi, -} finnish, friulan, galician, german_1901, german_1996,  german_Swiss, greek_Ancient, greek_Mono, greek_Poly, gujarati, hindi, hungarian,  indonesian, interlingua, irish, italian, kannada, kurmanji, lao, latin,  latvian, lithuanian, malayalam, marathi, mongolian, norwegian_Bokmal,@@ -256,7 +256,7 @@ esperanto = unsafePerformIO (loadHyphenator (languageAffix Esperanto)) estonian = unsafePerformIO (loadHyphenator (languageAffix Estonian)) ethiopic = unsafePerformIO (loadHyphenator (languageAffix Ethiopic))-farsi = unsafePerformIO (loadHyphenator (languageAffix Farsi))+-- farsi = unsafePerformIO (loadHyphenator (languageAffix Farsi)) finnish = unsafePerformIO (loadHyphenator (languageAffix Finnish)) french = unsafePerformIO (loadHyphenator (languageAffix French)) friulan = unsafePerformIO (loadHyphenator (languageAffix Friulan))@@ -330,7 +330,7 @@   Esperanto -> esperanto   Estonian -> estonian   Ethiopic -> ethiopic-  Farsi -> farsi+  -- Farsi -> farsi   Finnish -> finnish   French -> french   Friulan -> friulan