-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-0.14.7'. Refs #289.
- Loading branch information
Showing
11 changed files
with
49 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2024-02-09 Ivan Perez <[email protected]> | ||
* Version bump (0.14.7) (#289). | ||
|
||
2023-12-07 Ivan Perez <[email protected]> | ||
* Version bump (0.14.6) (#282). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ cabal-version: >= 1.10 | |
build-type: Simple | ||
|
||
name: yampa-test | ||
version: 0.14.6 | ||
version: 0.14.7 | ||
author: Ivan Perez | ||
maintainer: [email protected] | ||
homepage: http://github.com/ivanperez-keera/Yampa | ||
|
@@ -84,7 +84,7 @@ library | |
base >= 4 && < 5 | ||
, normaldistribution >= 1.1.0.1 && < 1.2 | ||
, QuickCheck >= 2.12 && < 2.15 | ||
, Yampa >= 0.14.6 && < 0.15 | ||
, Yampa >= 0.14.7 && < 0.15 | ||
|
||
default-language: | ||
Haskell2010 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
2024-02-09 Ivan Perez <[email protected]> | ||
* Version bump (0.14.7) (#289). | ||
* Remove postgresql repo before installation in CI script (#284). | ||
* Simplify definition of FRP.Yampa.Event.joinE (#285). | ||
* Simplify definition of FRP.Yampa.EventS.isJustEdge (#286). | ||
* Simplify definition of FRP.Yampa.Task.isEdge (#287). | ||
* Remove redundant imports from examples (#288). | ||
|
||
2023-12-07 Ivan Perez <[email protected]> | ||
* Version bump (0.14.6) (#282). | ||
* Document HTML + WebAssembly backend in README (#34). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ cabal-version: >= 1.10 | |
build-type: Simple | ||
|
||
name: Yampa | ||
version: 0.14.6 | ||
version: 0.14.7 | ||
author: Henrik Nilsson, Antony Courtney | ||
maintainer: Ivan Perez ([email protected]) | ||
homepage: https://github.com/ivanperez-keera/Yampa/ | ||
|
@@ -72,6 +72,24 @@ flag examples | |
default: False | ||
manual: True | ||
|
||
-- WARNING: The following flag exposes Yampa's core. You should avoid using | ||
-- this at all. The only reason to expose it is that we are using Yampa for | ||
-- research, and many extensions require that we expose the constructors. No | ||
-- released project should depend on this. In general, you should always | ||
-- install Yampa with this flag disabled. | ||
flag expose-core | ||
description: | ||
You can enable exposing some of Yampa's core constructs using | ||
-fexpose-core. | ||
. | ||
Enabling this is an unsupported configuration, but it may be useful if you | ||
are building an extension of Yampa for research and do not wish to fork | ||
Yampa completely. | ||
. | ||
No released project should ever depend on this. | ||
default: False | ||
manual: True | ||
|
||
|
||
library | ||
exposed-modules: | ||
|
@@ -95,7 +113,6 @@ library | |
other-modules: | ||
-- Auxiliary (commonly used) types | ||
FRP.Yampa.Diagnostics | ||
FRP.Yampa.InternalCore | ||
|
||
build-depends: | ||
base < 6 | ||
|
@@ -117,6 +134,14 @@ library | |
build-depends: | ||
fail == 4.9.* | ||
|
||
if flag(expose-core) | ||
exposed-modules: | ||
FRP.Yampa.InternalCore | ||
else | ||
other-modules: | ||
FRP.Yampa.InternalCore | ||
|
||
|
||
test-suite hlint | ||
type: | ||
exitcode-stdio-1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters