Yampa 0.13.6 → 0.13.7
raw patch · 21 files changed
+108/−38 lines, 21 filesdep ~SDLdep ~basedep ~deepseqPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: SDL, base, deepseq, directory, filepath, hcwiid, process, random, regex-posix, simple-affine-space
API changes (from Hackage documentation)
Files
- CHANGELOG +7/−0
- LICENSE +4/−1
- Yampa.cabal +25/−19
- src/FRP/Yampa.hs +4/−1
- src/FRP/Yampa/Arrow.hs +4/−1
- src/FRP/Yampa/Basic.hs +4/−1
- src/FRP/Yampa/Conditional.hs +4/−1
- src/FRP/Yampa/Delays.hs +4/−1
- src/FRP/Yampa/Diagnostics.hs +4/−1
- src/FRP/Yampa/Event.hs +4/−1
- src/FRP/Yampa/EventS.hs +4/−1
- src/FRP/Yampa/Hybrid.hs +4/−1
- src/FRP/Yampa/Integration.hs +4/−1
- src/FRP/Yampa/InternalCore.hs +4/−1
- src/FRP/Yampa/Loop.hs +4/−1
- src/FRP/Yampa/Random.hs +4/−1
- src/FRP/Yampa/Scan.hs +4/−1
- src/FRP/Yampa/Simulation.hs +4/−1
- src/FRP/Yampa/Switches.hs +4/−1
- src/FRP/Yampa/Task.hs +4/−1
- src/FRP/Yampa/Time.hs +4/−1
CHANGELOG view
@@ -1,3 +1,10 @@+2022-10-07 Ivan Perez <ivan.perez@keera.co.uk>+ * Yampa.cabal: Version bump (0.13.7) (#238), add version bounds to+ dependencies (#233).+ * LICENSE: Update years, copyright holders (#235).+ * src/: Update years, copyright holders (#235).+ * .travis.yml: Update distribution to bionic (#236).+ 2022-08-07 Ivan Perez <ivan.perez@haskell.sexy> * Yampa.cabal: Version bump (0.13.6) (#232). * src/: Fix typos in documentation (#224), replace AFRP with Yampa
LICENSE view
@@ -1,4 +1,7 @@-Copyright (c) 2003, Henrik Nilsson, Antony Courtney and Yale University.+Copyright (c) 2014-2022, Ivan Perez+Copyright (c) 2007-2012, George Griogidge+Copyright (c) 2005-2006, Henrik Nilsson+Copyright (c) 2003-2004, Henrik Nilsson, Antony Courtney and Yale University. All rights reserved. Redistribution and use in source and binary forms, with or without
Yampa.cabal view
@@ -30,7 +30,7 @@ build-type: Simple name: Yampa-version: 0.13.6+version: 0.13.7 author: Henrik Nilsson, Antony Courtney maintainer: Ivan Perez (ivan.perez@keera.co.uk) homepage: https://github.com/ivanperez-keera/Yampa/@@ -99,10 +99,11 @@ build-depends: base < 6- , deepseq- , random- , simple-affine-space + , deepseq >= 1.3.0.1 && < 1.5+ , random >= 1.1 && < 1.3+ , simple-affine-space >= 0.1 && < 0.2+ default-language: Haskell2010 @@ -135,7 +136,8 @@ False else build-depends:- base+ base >= 4 && < 5+ , hlint >= 1.7 -- Verify that the code is thoroughly documented@@ -161,12 +163,13 @@ else build-depends: base >= 4 && < 5- , directory- , filepath- , process- , regex-posix + , directory >= 1.2 && < 1.4+ , filepath >= 1.3.0.1 && < 1.5+ , process >= 1.1.0.2 && < 1.7+ , regex-posix >= 0.95 && < 0.97 + executable yampa-examples-sdl-bouncingbox main-is: MainBouncingBox.hs@@ -188,9 +191,10 @@ True build-depends: base < 5- , deepseq- , random- , SDL++ , deepseq >= 1.3.0.1 && < 1.5+ , random >= 1.1 && < 1.3+ , SDL >= 0.6 && < 0.7 , Yampa else buildable:@@ -218,9 +222,10 @@ True build-depends: base < 5- , deepseq- , random- , SDL++ , deepseq >= 1.3.0.1 && < 1.5+ , random >= 1.1 && < 1.3+ , SDL >= 0.6 && < 0.7 , Yampa else buildable:@@ -248,10 +253,11 @@ True build-depends: base < 5- , deepseq- , hcwiid- , random- , SDL++ , deepseq >= 1.3.0.1 && < 1.5+ , hcwiid >= 0.0.5 && < 0.1+ , random >= 1.1 && < 1.3+ , SDL >= 0.6 && < 0.7 , Yampa else buildable:
src/FRP/Yampa.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Arrow.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Arrow--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Basic.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Basic--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Conditional.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Delays.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Delays--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Diagnostics.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Diagnostics--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Event.hs view
@@ -2,7 +2,10 @@ {-# OPTIONS_GHC -fno-warn-warnings-deprecations #-} -- | -- Module : FRP.Yampa.Event--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/EventS.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.EventS--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Hybrid.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Hybrid--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Integration.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Integration--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/InternalCore.hs view
@@ -2,7 +2,10 @@ {-# LANGUAGE GADTs #-} -- | -- Module : FRP.Yampa--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Loop.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Loop--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Random.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Random--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Scan.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Scan--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Simulation.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Simulation--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Switches.hs view
@@ -1,7 +1,10 @@ {-# LANGUAGE Rank2Types #-} -- | -- Module : FRP.Yampa.Switches--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Task.hs view
@@ -2,7 +2,10 @@ {-# LANGUAGE Rank2Types #-} -- | -- Module : FRP.Yampa.Task--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk
src/FRP/Yampa/Time.hs view
@@ -1,6 +1,9 @@ -- | -- Module : FRP.Yampa.Time--- Copyright : (c) Antony Courtney and Henrik Nilsson, Yale University, 2003+-- Copyright : (c) Ivan Perez, 2014-2022+-- (c) George Giorgidze, 2007-2012+-- (c) Henrik Nilsson, 2005-2006+-- (c) Antony Courtney and Henrik Nilsson, Yale University, 2003-2004 -- License : BSD-style (see the LICENSE file in the distribution) -- -- Maintainer : ivan.perez@keera.co.uk