Skip to content

Ocaml 5.3 support for ocamlformat-mlx #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@
"OCamlFormat is a tool to automatically format OCaml .mlx code in a uniform style.")
(depends
(ocaml
(and
(>= 4.08)
(< 5.3)))
(>= 4.08))
(alcotest
(and
:with-test
Expand Down Expand Up @@ -89,10 +87,8 @@
(description
"**ocamlformat** is a code formatter for OCaml. It comes with opinionated default settings but is also fully customizable to suit your coding style.\n\n- **Profiles:** ocamlformat offers profiles we predefined formatting configurations. Profiles include `default`, `ocamlformat`, `janestreet`.\n- **Configurable:** Users can change the formatting profile and configure every option in their `.ocamlformat` configuration file.\n- **Format Comments:** ocamlformat can format comments, docstrings, and even code blocks in your comments.\n- **RPC:** ocamlformat provides an RPC server that can be used by other tools to easily format OCaml Code.")
(depends
(ocaml
(and
(>= 4.08)
(< 5.3)))
(ocaml
(>= 4.08))
(cmdliner
(or
(and
Expand Down
2 changes: 1 addition & 1 deletion ocamlformat-mlx-lib.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ authors: [
homepage: "https://github.com/ocaml-mlx/ocamlformat-mlx"
bug-reports: "https://github.com/ocaml-mlx/ocamlformat-mlx/issues"
depends: [
"ocaml" {>= "4.08" & < "5.3"}
"ocaml" {>= "4.08"}
"alcotest" {with-test & >= "1.3.0"}
"base" {>= "v0.12.0"}
"cmdliner" {>= "1.1.0"}
Expand Down
2 changes: 1 addition & 1 deletion ocamlformat-mlx.opam
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ authors: [
homepage: "https://github.com/ocaml-mlx/ocamlformat-mlx"
bug-reports: "https://github.com/ocaml-mlx/ocamlformat-mlx/issues"
depends: [
"ocaml" {>= "4.08" & < "5.3"}
"ocaml" {>= "4.08"}
"cmdliner" {with-test = "false" & >= "1.1.0" | with-test & >= "1.2.0"}
"csexp" {>= "1.4.0"}
"dune" {>= "2.8"}
Expand Down
Loading