packages feed

phladiprelio-ukrainian-simple 0.20.2.1 → 0.20.2.2

raw patch · 4 files changed

+16/−10 lines, 4 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Phladiprelio.Ukrainian.IO: instance Control.DeepSeq.NFData Phladiprelio.Ukrainian.IO.PhladiprelioUkr
+ Phladiprelio.Ukrainian.IO: instance GHC.Generics.Generic Phladiprelio.Ukrainian.IO.PhladiprelioUkr

Files

CHANGELOG.md view
@@ -219,19 +219,23 @@  Some code improvements.  - ## 0.20.0.0 -- 2024-04-07+## 0.20.0.0 -- 2024-04-07  * Twentieth version. Switched to Word8 instead of Double. Made a window to provide in the future possible updates for the Double-related functionality. Updated some important dependencies. Now the results can differ significantly from the earlier ones because the values are calculated in a significantly different way. - ## 0.20.1.0 -- 2024-04-08+## 0.20.1.0 -- 2024-04-08  * Twentieth version revised A. Fixed issue with phladiprelio-general-datatype as a dependency. Added explicit dependency of deepseq, which is installed by default by GHC installation (therefore, no additional overhead). Some performance and memory usage improvements. -  ## 0.20.2.0 -- 2024-04-08+## 0.20.2.0 -- 2024-04-08  * Twentieth version revised B. Fixed issue with +l2 ... -l2 group of arguments. Updated the dependency of phladiprelio-general-datatype. Some documentation improvements. -  ## 0.20.2.1 -- 2024-04-09+## 0.20.2.1 -- 2024-04-09  * Twentieth version revised C. Fixed issue with documentation in music mode of operation. ++## 0.20.2.2 -- 2024-04-10++* Twentieth version revised D. Provided Generic and NFData instances for PladiprelioUkr datatype. This fixed issue with being not loadable in GHCi. 
Phladiprelio/Ukrainian/IO.hs view
@@ -1,4 +1,4 @@-{-# LANGUAGE NoImplicitPrelude, ScopedTypeVariables #-}+{-# LANGUAGE NoImplicitPrelude, ScopedTypeVariables, DeriveGeneric #-}  module Phladiprelio.Ukrainian.IO where @@ -117,7 +117,9 @@     putStrLn . unlines $ strOutput     return strOutput -data PhladiprelioUkr = S Int Integer String deriving (Eq)+data PhladiprelioUkr = S Int Integer String deriving (Eq, Generic)++instance NFData PhladiprelioUkr  instance Show PhladiprelioUkr where   show (S i j xs) = showBignum 7 j `mappend` " " `mappend` xs `mappend` "  " `mappend` showWithSpaces 4 i
README.md view
@@ -131,7 +131,7 @@  On the 08/03/2024 there is International Women's Day. -On the 12/03/2024 there was a Birthday of Emma Kok, the foundation founder. She turned 16. Therefore, the releases 0.20.0.0, 0.20.1.0, 0.20.2.0 and 0.20.2.1 are additionally devoted i.e. tributed to her.+On the 12/03/2024 there was a Birthday of Emma Kok, the foundation founder. She turned 16. Therefore, the releases 0.20.0.0, 0.20.1.0, 0.20.2.0, 0.20.2.1 and 0.20.2.2 are additionally devoted i.e. tributed to her.  Besides, you can support Ukrainian people in various forms. 
phladiprelio-ukrainian-simple.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.4 name:               phladiprelio-ukrainian-simple-version:            0.20.2.1+version:            0.20.2.2  -- A short (one-line) description of the package. synopsis:           A PhLADiPreLiO implementation for Ukrainian that uses hashes and asynchronous concurrency.@@ -27,7 +27,7 @@     exposed-modules:  Phladiprelio.Ukrainian.IO      -- LANGUAGE extensions used by modules in this package.-    other-extensions: NoImplicitPrelude, BangPatterns+    other-extensions: NoImplicitPrelude, BangPatterns, DeriveGeneric     build-depends:    base >=4.13 && <5, rhythmic-sequences ==0.8.0.0, ukrainian-phonetics-basic-array ==0.10.0.0, phonetic-languages-ukrainian-array ==0.12.2.0, phladiprelio-ukrainian-shared ==0.5.0.2, cli-arguments ==0.7.0.0, phonetic-languages-permutations-array ==0.5.0.0, phonetic-languages-constraints-array ==0.8.0.0, phonetic-languages-simplified-base ==0.9.0.0, halfsplit ==0.4.3.0, directory >=1.3.4.0 && <2, rev-scientific ==0.2.1.0, async >= 2.2.2 && <3, phladiprelio-tests ==0.1.0.0, phladiprelio-general-datatype ==0.10.1.0, mmsyn2-array ==0.3.1.1, phonetic-languages-basis ==0.3.0.0, minmax ==0.1.1.0, deepseq >=1.4.4.0 && <2     hs-source-dirs:   .     default-language: Haskell2010@@ -39,7 +39,7 @@     other-modules:    Phladiprelio.Ukrainian.IO     ghc-options:      -threaded -rtsopts     -- LANGUAGE extensions used by modules in this package.-    other-extensions: NoImplicitPrelude, BangPatterns+    other-extensions: NoImplicitPrelude, BangPatterns, DeriveGeneric     build-depends:    base >=4.13 && <5, rhythmic-sequences ==0.8.0.0, ukrainian-phonetics-basic-array ==0.10.0.0, phonetic-languages-ukrainian-array ==0.12.2.0, phladiprelio-ukrainian-shared ==0.5.0.2, cli-arguments ==0.7.0.0, phonetic-languages-permutations-array ==0.5.0.0, phonetic-languages-constraints-array ==0.8.0.0, phonetic-languages-simplified-base ==0.9.0.0, halfsplit ==0.4.3.0, directory >=1.3.4.0 && <2, rev-scientific ==0.2.1.0, async >= 2.2.2 && <3, phladiprelio-tests ==0.1.0.0, phladiprelio-general-datatype ==0.10.1.0, mmsyn2-array ==0.3.1.1, phonetic-languages-basis ==0.3.0.0, minmax ==0.1.1.0, deepseq >=1.4.4.0 && <2     hs-source-dirs:   .     default-language: Haskell2010