Skip to content

Commit 2a3f434

Browse files
committed
[new release] reactiveData (0.2.4)
CHANGES: * Bugfix: RList.singleton_s: make sure to keep intermediate signal alive.
1 parent 7a64698 commit 2a3f434

File tree

1 file changed

+40
-0
lines changed
  • packages/reactiveData/reactiveData.0.2.4

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
opam-version: "2.0"
2+
synopsis: "Declarative events and signals for OCaml"
3+
description:
4+
"React is an OCaml module for functional reactive programming (FRP). It provides support to program with time varying values : declarative events and signals. React doesn't define any primitive event or signal, it lets the client chooses the concrete timeline."
5+
maintainer: ["Ocsigen team <[email protected]>"]
6+
authors: ["Hugo Heuzard <[email protected]>"]
7+
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
8+
tags: ["reactive" "declarative" "signal" "event" "frp"]
9+
homepage: "https://github.com/ocsigen/reactiveData"
10+
bug-reports: "https://github.com/ocsigen/reactiveData/issues"
11+
depends: [
12+
"dune" {>= "3.17"}
13+
"ocaml" {>= "4.08"}
14+
"react" {>= "1.2.1"}
15+
"odoc" {with-doc}
16+
]
17+
build: [
18+
["dune" "subst"] {dev}
19+
[
20+
"dune"
21+
"build"
22+
"-p"
23+
name
24+
"-j"
25+
jobs
26+
"@install"
27+
"@runtest" {with-test}
28+
"@doc" {with-doc}
29+
]
30+
]
31+
dev-repo: "git+https://github.com/ocsigen/reactiveData.git"
32+
url {
33+
src:
34+
"https://github.com/ocsigen/reactiveData/releases/download/0.2.4/reactiveData-0.2.4.tbz"
35+
checksum: [
36+
"sha256=b98746d36df24d82d31a94cce3ff590e332b6ad62ebe86f6e53a0cf965849fba"
37+
"sha512=4b996caf01819d34acd0564f9410ae1a6def818f7b5ab2777e0daf16799bbd0c9582a7ca5218f5cbd71db7645aca4cf95e4d5c9010a3b4514c8bd4ac10f38b56"
38+
]
39+
}
40+
x-commit-hash: "67550c1ecd5577c086363bef535c3bb00ad40b22"

0 commit comments

Comments
 (0)