packages feed

phonetic-languages-simplified-properties-array-common 0.1.0.0 → 0.2.0.0

raw patch · 3 files changed

+9/−4 lines, 3 filesdep ~phonetic-languages-basisPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: phonetic-languages-basis

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -5,3 +5,8 @@ * First version. Released on an unsuspecting world. Is taken from the phonetic-languages-simplified-properties-array package. +## 0.2.0.0 -- 2022-08-09++* The second version. Updated the dependencies so that now the Ukrainian syllable segmentation is treated more properly.+Changed the structure of the non-sound Ukraninian symbols representation (now they are converted to one of the [100,101,102]).+
Phonetic/Languages/Array/Ukrainian/Common.hs view
@@ -101,6 +101,6 @@ {-# INLINE eval23KF #-}  words1 xs = if null ts then [] else w : words1 s'' -- Practically this is an optimized versio>-  where ts = dropWhile (< 1) xs-        (w, s'') = span (> 0) ts+  where ts = dropWhile (> 99) xs+        (w, s'') = span (< 100) ts {-# NOINLINE words1 #-}
phonetic-languages-simplified-properties-array-common.cabal view
@@ -1,5 +1,5 @@ name:                phonetic-languages-simplified-properties-array-common-version:             0.1.0.0+version:             0.2.0.0 synopsis:            Common functionality for 'with-tuples' and old version of properties.  description:         The common functionality for phonetic-languages-simplified-properties-array and phonetic-languages-simplified-properties-array-old packages. homepage:            https://hackage.haskell.org/package/phonetic-languages-simplified-properties-array-common@@ -17,6 +17,6 @@   exposed-modules:     Phonetic.Languages.Array.Ukrainian.Common   -- other-modules:   other-extensions:    BangPatterns, CPP-  build-depends:       base >=4.8 && <5, phonetic-languages-rhythmicity ==0.9.2.0, phonetic-languages-basis ==0.1.0.0+  build-depends:       base >=4.8 && <5, phonetic-languages-rhythmicity ==0.9.2.0, phonetic-languages-basis ==0.1.1.0   -- hs-source-dirs:   default-language:    Haskell2010