Skip to content

Commit

Permalink
[new release] rtop and reason (3.9.0)
Browse files Browse the repository at this point in the history
CHANGES:

- Reduce the amount of parentheses around functor usage (@SanderSpies, [reasonml/reason#2683](reasonml/reason#2683))
- Print module type body on separate line (@SanderSpies, [reasonml/reason#2709](reasonml/reason#2709))
- Fix missing patterns around contraint pattern (a pattern with a type annotation).
- Fix top level extension printing
- Remove the dependency on the `result` package, which isn't needed for OCaml
  4.03 and above (@anmonteiro) [reasonml/reason#2703](reasonml/reason#2703)
- Fix the binary parser by converting to the internal AST version used by
  Reason (@anmonteiro) [reasonml/reason#2713](reasonml/reason#2713)
- Port Reason to `ppxlib` (@anmonteiro, [reasonml/reason#2711](reasonml/reason#2711))
- Support OCaml 5.1 (@anmonteiro, [reasonml/reason#2714](reasonml/reason#2714))
  • Loading branch information
anmonteiro committed Jun 17, 2023
1 parent d3826f4 commit 7c1c414
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 0 deletions.
52 changes: 52 additions & 0 deletions packages/reason/reason.3.9.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
opam-version: "2.0"
synopsis: "Reason: Syntax & Toolchain for OCaml"
description: """
Reason gives OCaml a new syntax that is remniscient of languages like
JavaScript. It's also the umbrella project for a set of tools for the OCaml &
JavaScript ecosystem."""
maintainer: [
"Jordan Walke <jordojw@gmail.com>"
"Antonio Nuno Monteiro <anmonteiro@gmail.com>"
]
authors: ["Jordan Walke <jordojw@gmail.com>"]
license: "MIT"
homepage: "https://reasonml.github.io/"
bug-reports: "https://github.com/reasonml/reason/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.03" & < "5.1"}
"ocamlfind" {build}
"dune-build-info" {>= "2.9.3"}
"menhir" {>= "20180523"}
"merlin-extend" {>= "0.6"}
"fix"
"ppx_derivers"
"ppxlib" {>= "0.28.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/reasonml/reason.git"
url {
src:
"https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz"
checksum: [
"sha256=8527aafa233e878e08cde756d91e68d140630d2affcdd1d7bbbecd7d1fa32959"
"sha512=ad8e13f26b31d3342987b3a148ca1ab1d93b0dea7623809242cba9c2259630c191c878bb6da0743f9fc5924f29e027fa746a7d2dd36dc46c3aa0857d5680a30e"
]
}
x-commit-hash: "8af1e160522da691aed27f47bf300fca7a80a510"
45 changes: 45 additions & 0 deletions packages/rtop/rtop.3.9.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
opam-version: "2.0"
synopsis: "Reason toplevel"
description:
"rtop is the toplevel (or REPL) for Reason, based on utop (https://github.com/diml/utop)."
maintainer: [
"Jordan Walke <jordojw@gmail.com>"
"Antonio Nuno Monteiro <anmonteiro@gmail.com>"
]
authors: ["Jordan Walke <jordojw@gmail.com>"]
license: "MIT"
homepage: "https://reasonml.github.io/"
bug-reports: "https://github.com/reasonml/reason/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.03" & < "5.1"}
"reason" {= version}
"utop" {>= "2.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"--promote-install-files=false"
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/reasonml/reason.git"
url {
src:
"https://github.com/reasonml/reason/releases/download/3.9.0/reason-3.9.0.tbz"
checksum: [
"sha256=8527aafa233e878e08cde756d91e68d140630d2affcdd1d7bbbecd7d1fa32959"
"sha512=ad8e13f26b31d3342987b3a148ca1ab1d93b0dea7623809242cba9c2259630c191c878bb6da0743f9fc5924f29e027fa746a7d2dd36dc46c3aa0857d5680a30e"
]
}
x-commit-hash: "8af1e160522da691aed27f47bf300fca7a80a510"

0 comments on commit 7c1c414

Please sign in to comment.