Skip to content

Commit

Permalink
Get rid of upper bound for react
Browse files Browse the repository at this point in the history
Signed-off-by: Sora Morimoto <[email protected]>
  • Loading branch information
smorimoto committed Dec 20, 2024
1 parent 7e79416 commit e52c9d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
(name reactiveData)
(synopsis "Declarative events and signals for OCaml")
(description "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.")
(tags ("reactive" "declarative" "signal" "event" "frp"))
(depends
(ocaml (>= 4.08))
(react (and (>= 1.2.1) (< 1.3)))))
(react (>= 1.2.1)))
(tags ("reactive" "declarative" "signal" "event" "frp")))
2 changes: 1 addition & 1 deletion reactiveData.opam
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bug-reports: "https://github.com/ocsigen/reactiveData/issues"
depends: [
"dune" {>= "3.17"}
"ocaml" {>= "4.08"}
"react" {>= "1.2.1" & < "1.3"}
"react" {>= "1.2.1"}
"odoc" {with-doc}
]
build: [
Expand Down

0 comments on commit e52c9d3

Please sign in to comment.