Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Disable constant dune availability announcements. (#2037)
- Add syntax highlighting support for Rocq 9.0 dune plugin. (#2026)
- Add dune syntax highlighting for `melange.emit` stanza and
`melange.runtime_deps` library field (#2027)
Expand Down
10 changes: 0 additions & 10 deletions src/dune.ml
Original file line number Diff line number Diff line change
Expand Up @@ -115,11 +115,6 @@ let make root () =
| Ok v ->
(match Dune_version.from_string v with
| Some version when Dune_version.is_valid version ->
show_message
`Info
"Dune Package Management is available with dune from %s, version %s."
(Path.to_string binary)
v;
Some { bin; root }
| _ -> None)
| Error _err -> None)
Expand All @@ -140,11 +135,6 @@ let make root () =
| Ok v ->
(match Dune_version.from_string v with
| Some version when Dune_version.is_valid version ->
show_message
`Info
"Dune Package Management is available with dune from %s, version %s."
path
v;
Promise.return (Some { bin; root })
| _ -> Promise.return None)
| Error _err -> Promise.return None)))
Expand Down
Loading