Skip to content

Commit ac9003a

Browse files
Merge branch 'release-0.14.11'. Refs #310.
2 parents 721fac5 + a4647a3 commit ac9003a

File tree

5 files changed

+27
-13
lines changed

5 files changed

+27
-13
lines changed

yampa-test/CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-10-07 Ivan Perez <[email protected]>
2+
* Version bump (0.14.11) (#310).
3+
* Bump version bounds of dependencies (#309).
4+
15
2024-08-07 Ivan Perez <[email protected]>
26
* Version bump (0.14.10) (#302).
37
* Add test for trapezoidIntegral (#263).

yampa-test/yampa-test.cabal

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cabal-version: >= 1.10
3131
build-type: Simple
3232

3333
name: yampa-test
34-
version: 0.14.10
34+
version: 0.14.11
3535
author: Ivan Perez
3636
maintainer: [email protected]
3737
homepage: http://github.com/ivanperez-keera/Yampa
@@ -83,8 +83,8 @@ library
8383
build-depends:
8484
base >= 4 && < 5
8585
, normaldistribution >= 1.1.0.1 && < 1.2
86-
, QuickCheck >= 2.12 && < 2.15
87-
, Yampa >= 0.14.10 && < 0.15
86+
, QuickCheck >= 2.12 && < 2.16
87+
, Yampa >= 0.14.11 && < 0.15
8888

8989
default-language:
9090
Haskell2010
@@ -122,10 +122,10 @@ test-suite yampa-quicheck
122122
build-depends:
123123
base < 5
124124
, Cabal >= 1.19 && < 3.9
125-
, QuickCheck >= 2.12 && < 2.15
125+
, QuickCheck >= 2.12 && < 2.16
126126
, random >= 1.1 && < 1.3
127-
, tasty >= 0.1 && < 1.5
128-
, tasty-quickcheck >= 0.1 && < 0.11
127+
, tasty >= 0.1 && < 1.6
128+
, tasty-quickcheck >= 0.1 && < 0.12
129129
, Yampa
130130
, yampa-test
131131

yampa/CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2024-10-07 Ivan Perez <[email protected]>
2+
* Version bump (0.14.11) (#310).
3+
* Add new publications by Schmidli et al. (#306).
4+
* Add new publication by Klinge et al. (#308).
5+
* Bump version bounds of dependencies (#309).
6+
* Thanks to @seliane.
7+
18
2024-08-07 Ivan Perez <[email protected]>
29
* Version bump (0.14.10) (#302).
310
* Implement integral using trapezoid rule (#263).

yampa/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,9 @@ Documentation is also available in the
352352
## Publications
353353
<sup>[(Back to top)](#table-of-contents)</sup>
354354

355+
* [Using Functional Reactive Programming for Robotic Art: An Experience Report](https://dl.acm.org/doi/10.1145/3677996.3678288) (Eliane I. Schmidli and Farhad Mehta; 2024)
356+
* [Demo: The Fun of Robotic Artwork](https://dl.acm.org/doi/10.1145/3677996.3678286) (Eliane I. Schmidli and Farhad Mehta; 2024)
357+
* [Reactamole: functional reactive molecular programming](https://doi.org/10.1007/s11047-024-09982-5) (Titus Klinge, James Lathrop, Peter-Michael Osera, Allison Rogers; 2024)
355358
* [The Beauty and Elegance of Functional Reactive Animation](https://dl.acm.org/doi/10.1145/3609023.3609806?cid=99658741366) (Ivan Perez; 2023)
356359
* [Extensible and Robust Functional Reactive Programming](http://www.cs.nott.ac.uk/~psxip1/papers/2017-Perez-thesis-latest.pdf) (Ivan Perez; 2017)
357360
* [Testing and Debugging Functional Reactive Programming](http://dl.acm.org/authorize?N46564) (Ivan Perez and Henrik Nilsson; 2017)

yampa/Yampa.cabal

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ cabal-version: >= 1.10
3030
build-type: Simple
3131

3232
name: Yampa
33-
version: 0.14.10
33+
version: 0.14.11
3434
author: Henrik Nilsson, Antony Courtney
3535
maintainer: Ivan Perez ([email protected])
3636
homepage: https://github.com/ivanperez-keera/Yampa/
@@ -189,7 +189,7 @@ test-suite haddock-coverage
189189
base >= 4 && < 5
190190

191191
, directory >= 1.2 && < 1.4
192-
, filepath >= 1.3.0.1 && < 1.5
192+
, filepath >= 1.3.0.1 && < 1.6
193193
, process >= 1.1.0.2 && < 1.7
194194
, regex-posix >= 0.95 && < 0.97
195195

@@ -216,7 +216,7 @@ executable yampa-examples-sdl-bouncingbox
216216
build-depends:
217217
base < 5
218218

219-
, deepseq >= 1.3.0.1 && < 1.5
219+
, deepseq >= 1.3.0.1 && < 1.6
220220
, random >= 1.1 && < 1.3
221221
, SDL >= 0.6 && < 0.7
222222
, Yampa
@@ -247,7 +247,7 @@ executable yampa-examples-sdl-circlingmouse
247247
build-depends:
248248
base < 5
249249

250-
, deepseq >= 1.3.0.1 && < 1.5
250+
, deepseq >= 1.3.0.1 && < 1.6
251251
, random >= 1.1 && < 1.3
252252
, SDL >= 0.6 && < 0.7
253253
, Yampa
@@ -278,7 +278,7 @@ executable yampa-examples-sdl-wiimote
278278
build-depends:
279279
base < 5
280280

281-
, deepseq >= 1.3.0.1 && < 1.5
281+
, deepseq >= 1.3.0.1 && < 1.6
282282
, hcwiid >= 0.0.5 && < 0.1
283283
, random >= 1.1 && < 1.3
284284
, SDL >= 0.6 && < 0.7
@@ -351,8 +351,8 @@ benchmark yampa-bench
351351
build-depends:
352352
base < 5
353353
, criterion >= 0.5.0.0 && < 1.7
354-
, filepath >= 1.3.0.1 && < 1.5
355-
, time >= 1.4 && < 1.13
354+
, filepath >= 1.3.0.1 && < 1.6
355+
, time >= 1.4 && < 1.15
356356
, Yampa
357357

358358
default-language:

0 commit comments

Comments
 (0)