Skip to content

Commit 1ebe1e8

Browse files
committed
[new release] reason (2 packages) (3.15.0)
CHANGES: - rtop: read `~/.config/rtop/init.re` configuration file (@anmonteiro, [reasonml/reason#2813](reasonml/reason#2813)) - the `-init FILE` flag works as before - rtop: ignore `~/.ocamlinit.ml` or `~/.config/utop/init.ml` config files (@anmonteiro, [reasonml/reason#2813](reasonml/reason#2813)) - Add support for raw identifier syntax (@anmonteiro, [reasonml/reason#2796](reasonml/reason#2796)) - Fix: display attributes in record field and JSX props under punning (@pedrobslisboa, [reasonml/reason#2824](reasonml/reason#2824)) - Support modest Unicode letters in identifiers (@anmonteiro, [reasonml/reason#2828](reasonml/reason#2828)) - refmt: fix file descriptor leak (@anmonteiro, [reasonml/reason#2830](reasonml/reason#2830))
1 parent 36f4d2d commit 1ebe1e8

File tree

2 files changed

+95
-0
lines changed
  • packages
    • reason/reason.3.15.0
    • rtop/rtop.3.15.0

2 files changed

+95
-0
lines changed

packages/reason/reason.3.15.0/opam

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
opam-version: "2.0"
2+
synopsis: "Reason: Syntax & Toolchain for OCaml"
3+
description: """
4+
Reason gives OCaml a new syntax that is remniscient of languages like
5+
JavaScript. It's also the umbrella project for a set of tools for the OCaml &
6+
JavaScript ecosystem."""
7+
maintainer: [
8+
"Jordan Walke <[email protected]>"
9+
"Antonio Nuno Monteiro <[email protected]>"
10+
]
11+
authors: ["Jordan Walke <[email protected]>"]
12+
license: "MIT"
13+
homepage: "https://reasonml.github.io/"
14+
bug-reports: "https://github.com/reasonml/reason/issues"
15+
depends: [
16+
"dune" {>= "3.8"}
17+
"ocaml" {>= "4.06" & < "5.4"}
18+
"ocamlfind" {build}
19+
"dune-build-info" {>= "2.9.3"}
20+
"menhir" {>= "20180523"}
21+
"merlin-extend" {>= "0.6.2"}
22+
"fix"
23+
"ppx_derivers"
24+
"cppo"
25+
"ppxlib" {>= "0.28.0"}
26+
"odoc" {with-doc}
27+
]
28+
build: [
29+
["dune" "subst"] {dev}
30+
[
31+
"dune"
32+
"build"
33+
"-p"
34+
name
35+
"-j"
36+
jobs
37+
"@install"
38+
"@runtest" {with-test}
39+
"@doc" {with-doc}
40+
]
41+
]
42+
dev-repo: "git+https://github.com/reasonml/reason.git"
43+
url {
44+
src:
45+
"https://github.com/reasonml/reason/releases/download/3.15.0/reason-3.15.0.tbz"
46+
checksum: [
47+
"sha256=2dc61c0ad42c0c334ec918c997d087c7e7ac8748622188359808025f4214b15f"
48+
"sha512=adcb2bafbeccc1d1b515dfea1a7dbb57c01baf3d2ae95f728bcb11b02f09efda6d11ba3705f89c1d6750b2f624f201039d5a2fc3339a929ba5520a5a3e539eee"
49+
]
50+
}
51+
x-commit-hash: "2db8f7a4d2703b5c7e656f9f8b507215461b67a8"

packages/rtop/rtop.3.15.0/opam

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Reason toplevel"
3+
description:
4+
"rtop is the toplevel (or REPL) for Reason, based on utop (https://github.com/ocaml-community/utop)."
5+
maintainer: [
6+
"Jordan Walke <[email protected]>"
7+
"Antonio Nuno Monteiro <[email protected]>"
8+
]
9+
authors: ["Jordan Walke <[email protected]>"]
10+
license: "MIT"
11+
homepage: "https://reasonml.github.io/"
12+
bug-reports: "https://github.com/reasonml/reason/issues"
13+
depends: [
14+
"dune" {>= "3.8"}
15+
"ocaml" {>= "4.06" & < "5.4"}
16+
"reason" {= version}
17+
"utop" {>= "2.0"}
18+
"cppo"
19+
"odoc" {with-doc}
20+
]
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
]
35+
dev-repo: "git+https://github.com/reasonml/reason.git"
36+
url {
37+
src:
38+
"https://github.com/reasonml/reason/releases/download/3.15.0/reason-3.15.0.tbz"
39+
checksum: [
40+
"sha256=2dc61c0ad42c0c334ec918c997d087c7e7ac8748622188359808025f4214b15f"
41+
"sha512=adcb2bafbeccc1d1b515dfea1a7dbb57c01baf3d2ae95f728bcb11b02f09efda6d11ba3705f89c1d6750b2f624f201039d5a2fc3339a929ba5520a5a3e539eee"
42+
]
43+
}
44+
x-commit-hash: "2db8f7a4d2703b5c7e656f9f8b507215461b67a8"

0 commit comments

Comments
 (0)