ease 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+8/−2 lines, 2 filesdep ~basePVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
+ Ease: backInOut :: Ord a => (Overshoot a) -> Ease a
+ Ease: cubicIn :: Ease a
+ Ease: cubicInOut :: Ord a => Ease a
+ Ease: cubicOut :: Ease a
Files
- Ease.hs +5/−0
- ease.cabal +3/−2
Ease.hs view
@@ -16,6 +16,7 @@ , Overshoot(..) , backIn , backOut+ , backInOut -- * Bounce , bounceIn , bounceOut@@ -40,6 +41,10 @@ , quadIn , quadOut , quadInOut+ -- * Cubic+ , cubicIn+ , cubicOut+ , cubicInOut -- * Quart , quartIn , quartOut
ease.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: ease-version: 0.1.0.0+version: 0.1.0.1 synopsis: Robert Penner's easing equations description: Robert Penner's easing equations transcribed to haskell and normalized license: BSD3@@ -14,12 +14,13 @@ build-type: Simple extra-source-files: ChangeLog.md cabal-version: >=1.10+tested-with: GHC == 8.4.1, GHC == 8.2.2, GHC == 8.0.2 source-repository head type: git location: https://gitlab.com/fresheyeball/Ease.git library exposed-modules: Ease- build-depends: base >=4.9 && <4.10,+ build-depends: base >=4.8 && <4.12, data-default default-language: Haskell2010