phladiprelio-general-simple 0.6.0.0 → 0.6.1.0
raw patch · 3 files changed
+9/−3 lines, 3 filesdep +rev-scientificdep ~halfsplitPVP ok
version bump matches the API change (PVP)
Dependencies added: rev-scientific
Dependency ranges changed: halfsplit
API changes (from Hackage documentation)
Files
CHANGELOG.md view
@@ -80,3 +80,8 @@ printing in the terminal window and printing the result to the file. Added new dependencies. Switched to the two-column ouput as a usual one for non-tests functionality. +## 0.6.1.0 -- 2023-06-23++* Sixth version revised A. Updated dependencies. Fixed some issues with printing the resulting +information.+
Phladiprelio/General/Simple.hs view
@@ -31,6 +31,7 @@ import Numeric (showFFloat) import Phladiprelio.Halfsplit import System.Directory (doesFileExist,readable,writable,getPermissions,Permissions(..))+import Data.ReversedScientific generalF :: GWritingSystemPRPLX -- ^ Data used to obtain the phonetic language representation of the text.@@ -169,7 +170,7 @@ data PhladiprelioGen = S Int Integer String deriving Eq instance Show PhladiprelioGen where- show (S i j xs) = show j `mappend` " " `mappend` xs `mappend` " " `mappend` show i+ show (S i j xs) = showBignum 7 j `mappend` " " `mappend` xs `mappend` " " `mappend` showWithSpaces 4 i countSyll :: GWritingSystemPRPLX -- ^ Data used to obtain the phonetic language representation of the text.
phladiprelio-general-simple.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: phladiprelio-general-simple-version: 0.6.0.0+version: 0.6.1.0 -- A short (one-line) description of the package. synopsis: A generalized functionality of PhLADiPreLiO for different languages that uses hash algorithms.@@ -28,7 +28,7 @@ -- LANGUAGE extensions used by modules in this package. other-extensions: NoImplicitPrelude, BangPatterns- build-depends: base >=4.13 && <5, rhythmic-sequences ==0.3.0.0, phonetic-languages-phonetics-basics ==0.10.0.2, phladiprelio-general-shared ==0.1.0.0, cli-arguments ==0.7.0.0, phonetic-languages-permutations-array ==0.4.0.0, phonetic-languages-constraints-array ==0.7.3.0, phonetic-languages-simplified-base ==0.7.0.0, halfsplit ==0.1.0.0, directory >=1.3.4.0 && <2+ build-depends: base >=4.13 && <5, rhythmic-sequences ==0.3.0.0, phonetic-languages-phonetics-basics ==0.10.0.2, phladiprelio-general-shared ==0.1.0.0, cli-arguments ==0.7.0.0, phonetic-languages-permutations-array ==0.4.0.0, phonetic-languages-constraints-array ==0.7.3.0, phonetic-languages-simplified-base ==0.7.0.0, halfsplit ==0.2.0.0, directory >=1.3.4.0 && <2, rev-scientific ==0.2.1.0 hs-source-dirs: . default-language: Haskell2010