See full changelog
- backend
- catch findlib initialization failures and keep going on
Read the latest releases and updates from the OCaml compiler, OCaml infrastructure and the OCaml Platform Tools.
--force-output
option to force generation of diff file (#118 @clecat)_html
folder instead of being published at the
root of gh-pages
(#157, @NathanReb)On behalf of the dune team, I'm pleased to announce the 1.10.0 release of dune. This release is packed with bug fixes, but it also introduces a few interesting features. I'll highlight one important feature that we've introduced and plan to improve in future versions:
Dune allows you to specify package metadata in the dune project file and generate an appropriate opam file. This is advantageous to writing opam files manually as dune will correctly fill in some boilerplate such as the build command:
Here's a snippet from dune's own project file as a demonstration:
(generate_opam_files true) ;; necessary to enbale the generation
(license MIT)
(maintainers "Jane Street Group, LLC <opensource@janestreet.com>")
(authors "Jane Street Group, LLC <opensource@janestreet.com>")
(source (github ocaml/dune))
(documentation "https://dune.readthedocs.io/")
(package
(name dune)
(depends
(ocaml (>= 4.02))
base-unix
base-threads)
(conflicts
(jbuilder (<> "transition"))
(odoc (< 1.3.0))
(dune-release (< 1.3.0)))
(synopsis "Fast, portable and opinionated build system")
(description "<redacted>"))
Generating the opam file is done via $ dune build @check
(the @install
, and @all
aliases will also work).
Later, we plan to have dune do some sanity checks on the depends
field. In the more distant future, we might even skip the generation step altogether by having opam invoke dune to get the generated opam file directly.
Restricted the set of variables available for expansion in the destination
filename of install
stanza to simplify implementation and avoid dependency
cycles. (#2073, @aalekseyev, @jeremiedimino)
[menhir] call menhir from context root build_dir (#2067, @ejgallego, review by @jeremiedimino, @rgrinberg)
[coq] Add coq.pp
stanza to help with pre-processing of grammar
files (#2054, @ejgallego, review by @rgrinberg)
Add a new more generic form for the promote mode: (promote (until-clean) (into <dir>))
(#2068, @jeremiedimino)
Allow to promote only a subset of the targets via (promote (only <pred>))
. For instance: (promote (only *.mli))
(#2068, @jeremiedimino)
Improve the behavior when a strict subset of the targets of a rule is already in the source tree for projects using the dune language < 1.10 (#2068, fixes #2061, @jeremiedimino)
With lang dune >= 1.10, rules in standard mode are no longer allowed to produce targets that are present in the source tree. This has been a warning for long enough (#2068, @jeremiedimino)
Allow %{...} variables in pps flags (#2076, @mlasson review by @jeremiedimino and @aalekseyev).
Add a 'cookies' option to ppx_rewriter/deriver flags in library stanzas. This allow to specify cookie requests from variables expanded at each invocation of the preprocessor. (#2106, @mlasson @jeremiedimino)
Add more opam metadata and use it to generate .opam
files. In particular, a
package
field has been added to specify package specific information.
(#2017, #2091, @avsm, @jonludlam, @rgrinberg)
Clean up the special support for findlib.dynload
. Before, Dune would simply
match on the library name. Now, we only match on the findlib package name when
the library doesn't come from Dune. Someone writing a library called
findlib.dynload
with Dune would have to add (special_builtin_support findlib_dynload)
to trigger the special behavior. (#2115, @jeremiedimino)
Install the future_syntax
preprocessor as ocaml-syntax-shims.exe
(#2125,
@rgrinberg)
Hide full command on errors and warnings in development and show them in CI.
(detected using the CI
environment variable). Commands for which the
invocation might be omitted must output an error prefixed with File
. Add an
--always-show-command-line
option to disable this behavior and always show
the full command. (#2120, fixes #1733, @rgrinberg)
In dune-workspace
files, add the ability to choose the host context and to
create duplicates of the default context with different settings. (#2098,
@TheLortex, review by @jeremiedimino, @rgrinberg and @aalekseyev)
Add support for hg in dune subst
(#2135, @jeremiedimino)
Don't build documentation for implementations of virtual libraries (#2141, fixes #2138, @jonludlam)
Fix generation of the -pp
flag in .merlin (#2142, @rgrinberg)
Make dune subst
add a (version ...)
field to the dune-project
file (#2148, @jeremiedimino)
Add the %{os_type}
variable, which is a short-hand for
%{ocaml-config:os_type}
(#1764, @jeremiedimino)
Allow enabled_if
fields in library
stanzas, restricted to the
%{os_type}
, %{model}
, %{architecture}
, %{system}
variables (#1764,
#2164 @jeremiedimino, @rgrinberg)
Fix chdir
on external and source paths. Dune will also fail gracefully if
the external or source path does not exist (#2165, fixes #2158, @rgrinberg)
Support the .cc
extension fro C++ sources (#2195, fixes #83, @rgrinberg)
Run ocamlformat
relative to the context root. This improves the locations of
errors. (#2196, fixes #1370, @rgrinberg)
Fix detection of README
, LICENSE
, CHANGE
, and HISTORY
files. These
would be undetected whenever the project was nested in another workspace.
(#2194, @rgrinberg)
Fix generation of .merlin
whenever there's more than one stanza with the
same ppx preprocessing specification (#2209 ,fixes #2206, @rgrinberg)
Fix generation of .merlin
in the presence of the copy_files
stanza and
preprocessing specifications of other stanazs. (#2211, fixes #2206,
@rgrinberg)
Run refmt
from the context's root directory. This improves error messages in
case of syntax errors. (#2223, @rgrinberg)
In .merlin files, don't pass -dump-ast
to the future_syntax
preprocessor.
Merlin doesn't seem to like it when binary AST is generated by a -pp
preprocessor. (#2236, @aalekseyev)
dune install
will verify that all files mentioned in all .install files
exist before trying to install anything. This prevents partial installation of
packages (#2230, @rgrinberg)
Special thanks to Rudi Grinberg for helping us in reviewing and merging pull-requests.
backend
-pp
flageditors modes
emacs
merlin--overlay
function (by Wilfred Hughes)vim
testsuite
dune subst
for watermarking. (#147, @NathanReb)CHANGES
, LICENSE
and README
againOops, we went looking but didn't find the changelog for this release 🙈
Oops, we went looking but didn't find the changelog for this release 🙈
UTop
: add get_load_path
and set_load_path
to manage the include directories (#284)UTop
: val load_path : string list ref
is removed (#284)Ast_408
doesn't shadow Int
or Misc
(#71,
@hhugo)Put back library variants in development mode. We discovered a
serious unexpected issue and we might need to adjust the design of
this feature before we are ready to commit to a final version. Users
will need to write (using library_variants 0.1)
in their
dune-project
file if they want to use it before the design is
finalized. (#2116, @diml)
Forbid to attach a variant to a library that implements a virtual library outside the current project (#2104, @rgrinberg)
Fix a bug where dune install
would install man pages to incorrect
paths when compared to opam-installer
. For example dune now
installs (foo.1 as man1/foo.1)
correctly and previously that was
installed to man1/man1/foo.1
. (#2105, @aalekseyev)
Do not fail when a findlib directory doesn't exist (#2101, fix #2099, @diml)
[coq] Rename (coqlib ...)
to (coq.theory ...)
, support for
coqlib
will be dropped in the 1.0 version of the Coq language
(#2055, @ejgallego)
Fix crash when calculating library dependency closure (#2090, fixes #2085, @rgrinberg)
Clean up the special support for findlib.dynload
. Before, Dune
would simply match on the library name. Now, we only match on the
findlib package name when the library doesn't come from
Dune. Someone writing a library called findlib.dynload
with Dune
would have to add (special_builton_support findlib_dynload)
to
trigger the special behavior. (#2115, @diml)
Include permissions in the digest of targets and dependencies (#2121, fix #1426, @rgrinberg, @xclerc)
.install
files not being generated (#2124, fixes #2123, @rgrinberg)Location.input_name
to the original filename when reading a
binary AST (#66, @diml)Location.input_name
to the original filename when reading a
binary AST (#.., @diml)We are pleased to announce the release of opam 2.0.4.
This new version contains some backported fixes:
opam config var
display, aligned on opam config list
[#3723 @rjbou - rel. #3717]synopsis
field internally inferred from descr
[#3753 @rjbou - fix #3738]diff.noprefix=false
config argument to overwrite user defined configuration [#3788 @rjbou, #3628 @Blaisorblade - fix #3627]Note: To homogenise macOS name on system detection, we decided to keep
macos
, and convertdarwin
tomacos
in opam. For the moment, to not break jobs & CIs, we keep uploadingdarwin
&macos
binaries, but from the 2.1.0 release, onlymacos
ones will be kept.
Installation instructions (unchanged):
From binaries: run
sh <(curl -sL https://opam.ocaml.org/install.sh)
or download manually from the Github "Releases" page to your PATH. In this case, don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update you sandbox script.
From source, using opam:
opam update; opam install opam-devel
(then copy the opam binary to your PATH as explained, and don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update you sandbox script)
From source, manually: see the instructions in the README.
We hope you enjoy this new minor version, and remain open to bug reports and suggestions.
NOTE: this article is cross-posted on opam.ocaml.org and ocamlpro.com. Please head to the latter for the comments!
On behalf of the dune team, I'm pleased to announce the release of Dune 1.9.0. This release introduces a few exciting new features:
dune init
command to help users quickly generate boilerplate and get start with dune projects (contributed by @shonfeder)I would like to thank Lucas Pluvinage and @ejgallego for contributing the first two features respectively. They've also collaborated on a blog post to describe these features in detail.
Warn when generated .merlin
does not reflect the preprocessing
specification. This occurs when multiple stanzas in the same directory use
different preprocessing specifications. This warning can now be disabled with
allow_approx_merlin
(#1947, fix #1946, @rgrinberg)
Watch mode: display "Success" in green and "Had errors" in red (#1956, @emillon)
Fix glob dependencies on installed directories (#1965, @rgrinberg)
Add support for library variants and default implementations. (#1900, @TheLortex)
Add experimental $ dune init
command. This command is used to create or
update project boilerplate. (#1448, fixes #159, @shonfeder)
Experimental Coq support (fix #1466, @ejgallego)
Install .cmi files of private modules in a .private
directory (#1983, fix
#1973 @rgrinberg)
Fix dune subst
attempting to substitute on directories. (#2000, fix #1997,
@rgrinberg)
Do not list private modules in the generated index. (#2009, fix #2008, @rgrinberg)
Warn instead of failing if an opam file fails to parse. This opam file can still be used to define scope. (#2023, @rgrinberg)
Do not crash if unable to read a directory when traversing to find root (#2024, @rgrinberg)
Do not exit dune if some source directories are unreadable. Instead, warn the user that such directories need to be ignored (#2004, fix #310, @rgrinberg)
Fix nested (binaries ..)
fields in the env
stanza. Previously, parent
binaries
fields would be ignored, but instead they should be combined.
(#2029, @rgrinberg)
Allow "." in c_names
and cxx_names
(#2036, fix #2033, @rgrinberg)
Format rules: if a dune file uses OCaml syntax, do not format it. (#2014, fix #2012, @emillon)
; _
(#549, @jberdine)index.mld
. Use correct headings for the listing. (#1925,
@rgrinberg, @aantron)dune-package
when version is empty string (#1919, fix #1918,
@rgrinberg)We are pleased to announce release 1.4.0 of odoc, the new, Dune-friendly documentation generator for OCaml and ReasonML.
You can install odoc and generate docs for your Dune project with:
opam update
opam install odoc
dune build @doc
Then, view the docs by opening _build/default/_doc/_html/index.html
!
While release 1.4.0 has new features, it is mainly focused on stability and maintainability. See its full changelog here. The previous release, 1.3.0 last October, included a lot of new code. Because of concerns about its stability, we chose not to widely announce 1.3.0. So, this message serves as an announcement for both releases :) The full changelog for 1.3.0 can be found here.
In summary, compared with 1.2.0, odoc
now has:
For now, we plan to continue improving the stability of odoc and the quality of its output. In the longer term, odoc has two significant goals:
To replace ocamldoc as OCaml's primary documentation generator. At the core of odoc is a powerful cross-referencer, capable of fully handling the complexity of OCaml's module system. Shortcomings in ocamldoc's ability to resolve cross-references in complex projects were one of the original motivations for starting odoc.
To create centrally-hosted, cross-referenced, searchable online documentation for all the published packages in opam, a “docs.ocaml.org
.”
Thanks to the odoc users and contributors, and happy documenting!
Changes
{0 ...}
), and top-level sections
within a page are level-1 headings ({1 ...}
) (#217, Rizo Isrof).--root-uri
option to --xref-base-uri
(#223, Rizo Isrof).Additions
{4 ...}
) and subparagraph headings ({5 ...}
) (#217,
Rizo Isrof).odoc support-files-targets
command (#232).bsdoc
for using
odoc
with BuckleScript (#269, Leandro Ostera).Bugs fixed
.mld
pages (#293, Daniel Buenzli).-
in them,
such as @->
(#178)..
in them, such as *.
(#237)..ml
file with a
type annotation, when that type annotation uses an alias of 'a option
(#101).{v ... v}
) can now only be terminated if the v}
is
immediately preceded by whitespace (#71, reported Daniel Buenzli).type
keyword instead of and
rendered in HTML for
mutually-recursive types (#105, reported @Fourchaux).nonrec
keyword not rendered (#249).and
not rendered for mutually-recursive modules, classes, and class types
(#251).constraint
clauses (#321).odoc html
option -o
now creates the output directory if it does not exist
#171, #264 Rizo Isrof).odoc html-targets
output now includes path prefix given through -o
option
(#173, Rizo Isrof).-I
and -o
options to refer to non-existent directories (#32, #170,
Daniel Buenzli).odoc compile-targets
match odoc compile
(#273, Daniel Buenzli).odoc compile-deps
does not work on .cmt
files (#162, Daniel Buenzli).odoc html-deps
now scans for .odoc
files recursively (#307, Daniel
Buenzli).odoc html-targets
ignores stop comments (#276, Daniel Buenzli).odoc html-targets
and odoc html-deps
segfault on .mld
pages (#277, #282,
Daneil Buenzli).--theme-uri
option not propagated to some subpages (#318, Thomas Refis).Build and development
make
in the esy build (#308, Leandro Ostera).bos
(#305, Daniel Buenzli).rresult
(#306, Daniel Buenzli).bisect_ppx
, previously present in development
checkouts (#316).On behalf of the dune team, I'm pleased to announce release 1.8. The highlight of this release is a standalone preprocessor that allows OCaml programs to use the new let bindings introduced in 1.8 and still be compatible with OCaml versions all the way back to 4.02.
This release includes some important contributions from a new contributor: @aalekseyev. So I would like to use this opportunity to welcome him to the team. Thanks Arseniy!
Clean up watch mode polling loop: improves signal handling and error handling during polling (#1912, fix #1907, fix #1671, @aalekseyev)
Change status messages during polling to be one-line, so that the messages are correctly erased by ^K. (#1912, @aalekseyev)
Add support for .cxx
extension for C++ stubs (#1831, @rgrinberg)
Add DUNE_WORKSPACE
variable. This variable is equivalent to setting
--workspace
in the command line. (#1711, fix #1503, @rgrinberg)
Add c_flags
and cxx_flags
to env profile settings (#1700 and #1800,
@gretay-js)
Format dune printenv
output (#1867, fix #1862, @emillon)
Add the (promote-into <dir>)
and `(promote-until-clean-into
Improve error message when dune subst
fails (#1898, fix #1897, @rgrinberg)
Add more GC counters to catapult traces (fix908, @rgrinberg)
Add a preprocessor shim for the let+
syntax of OCaml 4.08 (#1899,
implements #1891, @jeremiedimino)
Fix generation of .merlin
files on Windows. \
characters needed
to be escaped (#1869, @mlasson)
Fix 0 error code when $ dune format-dune-file
fails. (#1915, fix #1914,
@rgrinberg)
Configurator: deprecated query_expr
and introduced query_expr_err
which is
the same but with a better error in case it fails. (#1886, @ejgallego)
Make sure (menhir (mode promote) ...)
stanzas are ignored when
using --ignore-promoted-rules
or -p
(#1917, @jeremiedimino)
Fix interpretation of META
files containing archives with /
in
the filename. For instance, this was causing llvm to be unusable
with dune (#1889, fix #1885, @diml)
Make errors about menhir stanzas be located (#1881, fix #1876, @diml)
Add ${corrected-suffix}
, ${library-name}
and a few other
variables to the list of variables to upgrade. This fixes the
support for various framework producing corrections (#1840, #1853,
@diml)
Fix $ dune subst
failing because the build directory wasn't set. (#1854, fix
#1846, @rgrinberg)
Configurator: Add warning to Pkg_config.query
when a full package expression
is used. Add Pkg_config.query_expr
for cases when the full power of
pkg-config's querying is needed (#1842, fix #1833, @rgrinberg)
Fix unavailable, optional implementations eagerly breaking the build (#1857, fix #1856, @rgrinberg)
Fix the watch mode (#1837, #1839, fix #1836, @diml)
Configurator: Fix misquoting when running pkg-config (#1835, fix #1833, @Chris00)
On behalf of the dune team, I'm pleased to announce the release of dune 1.7.0. This release is the biggest release since 1.0 and I'm excited to present it to you. The change log is quite long so I'll summarize the most noteworthy changes:
The jbuilder binary and jbuild files are officially deprecated. But not to worry, we've created a $ dune upgrade
command to do the hard work for you.
The virtual libraries feature has made it to 1.7.0. I've blogged about it before
There's now a mode to disable transitive dependencies. This mode still has some caveats because it lacks proper compiler support. But we welcome user reports regarding its usability.
Dune now has a --trace-file
to profile slow builds using shiny flame graphs in Chrome.
Second step of the deprecation of jbuilder: the jbuilder
binary
now emits a warning on every startup and both jbuilder
and dune
emit warnings when encountering jbuild
files (#1752, @jeremiedimino)
Change the layout of build artifacts inside _build. The new layout enables
optimizations that depend on the presence of .cmx
files of private modules
(#1676, @bobot)
Fix merlin handling of private module visibility (#1653 @bobot)
unstable-fmt: use boxes to wrap some lists (#1608, fix #1153, @emillon, thanks to @rgrinberg)
skip directories when looking up programs in the PATH (#1628, fixes #1616, @jeremiedimino)
Use lsof
on macOS to implement --stats
(#1636, fixes #1634, @xclerc)
Generate dune-package
files for every package. These files are installed and
read instead of META
files whenever they are available (#1329, @rgrinberg)
Fix preprocessing for libraries with (include_subdirs ..)
(#1624, fix #1626,
@nojb, @rgrinberg)
Do not generate targets for archive that don't match the modes
field.
(#1632, fix #1617, @rgrinberg)
When executing actions, open files lazily and close them as soon as possible in order to reduce the maximum number of file descriptors opened by Dune (#1635, #1643, fixes #1633, @jonludlam, @rgrinberg, @jeremiedimino)
Reimplement the core of Dune using a new generic memoization system (#1489, @rudihorn, @jeremiedimino)
Replace the broken cycle detection algorithm by a state of the art one from this paper (#1489, @rudihorn)
Get the correct environment node for multi project workspaces (#1648, @rgrinberg)
Add dune compute
to call internal memoized functions (#1528,
@rudihorn, @jeremiedimino)
Add --trace-file
option to trace dune internals (#1639, fix #1180, @emillon)
Add --no-print-directory
(borrowed from GNU make) to suppress
Entering directory
messages. (#1668, @dra27)
Remove --stats
and track fd usage in --trace-file
(#1667, @emillon)
Add virtual libraries feature and enable it by default (#1430 fixes #921, @rgrinberg)
Fix handling of Control+C in watch mode (#1678, fixes #1671, @jeremiedimino)
Look for jsoo runtime in the same dir as the js_of_ocaml
binary
when the ocamlfind package is not available (#1467, @nojb)
Make the seq
package available for OCaml >= 4.07 (#1714, @rgrinberg)
Add locations to error messages where a rule fails to generate targets and rules that require files outside the build/source directory. (#1708, fixes #848, @rgrinberg)
Let Configurator
handle sizeof
(in addition to negative numbers).
(#1726, fixes #1723, @Chris00)
Fix an issue causing menhir generated parsers to fail to build in
some cases. The fix is to systematically use -short-paths
when
calling ocamlc -i
(#1743, fix #1504, @jeremiedimino)
Never raise when printing located errors. The code that would print the location excerpts was prone to raising. (#1744, fix #1736, @rgrinberg)
Add a dune upgrade
command for upgrading jbuilder projects to Dune
(#1749, @jeremiedimino)
When automatically creating a dune-project
file, insert the
detected name in it (#1749, @jeremiedimino)
Add (implicit_transitive_deps <bool>)
mode to dune projects. When this mode
is turned off, transitive dependencies are not accessible. Only listed
dependencies are directly accessible. (#1734, #430, @rgrinberg, @hnrgrgr)
Add toplevel
stanza. This stanza is used to define toplevels with libraries
already preloaded. (#1713, @rgrinberg)
Generate .merlin
files that account for normal preprocessors defined using a
subset of the action
language. (#1768, @rgrinberg)
Emit (orig_src_dir <path>)
metadata in dune-package
for dune packages
built with --store-orig-source-dir
command line flag (also controlled by
DUNE_STORE_ORIG_SOURCE_DIR
env variable). This is later used to generate
.merlin
with S
-directives pointed to original source locations and thus
allowing merlin to see those. (#1750, @andreypopp)
Improve the behavior of dune promote
when the files to be promoted have been
deleted. (#1775, fixes #1772, @jeremiedimino)
unstable-fmt: preserve comments (#1766, @emillon)
Pass flags correctly when using staged_pps
(#1779, fixes #1774, @jeremiedimino)
Fix an issue with the use of (mode promote)
in the menhir
stanza. It was previously causing intermediate mock files to be
promoted (#1783, fixes #1781, @jeremiedimino)
unstable-fmt: ignore files using OCaml syntax (#1784, @emillon)
Configurator: Add which
function to replace the which
command line utility
in a cross platform way. (#1773, fixes #1705, @Chris00)
Make configurator append paths to $PKG_CONFIG_PATH
on macOS. Previously it
was prepending paths and thus $PKG_CONFIG_PATH
set by users could have been
overridden by homebrew installed libraries (#1785, @andreypopp)
Disallow c/cxx sources that share an object file in the same stubs archive.
This means that foo.c
and foo.cpp
can no longer exist in the same library.
(#1788, @rgrinberg)
Forbid use of %{targets}
(or ${@}
in jbuild files) inside
preprocessing actions
(#1812, fixes #1811, @jeremiedimino)
Add DUNE_PROFILE
environment variable to easily set the profile. (#1806,
@rgrinberg)
Deprecate the undocumented (no_keep_locs)
field. It was only
necessary until virtual libraries were supported (#1822, fix #1816,
@jeremiedimino)
Rename unstable-fmt
to format-dune-file
and remove its --inplace
option.
(#1821, @emillon).
Autoformatting: (using fmt 1.1)
will also format dune files (#1821, @emillon).
Autoformatting: record dependencies on .ocamlformat-ignore
files (#1824,
fixes #1793, @emillon)
The new feature in this release is to automatically install
printers marked with [@@ocaml.toplevel_printer]
(#269 @diml).
Adding this annotation to your libraries will remove the need
to have a separate top
package to install the printers.
For example, in the uri
library, the old printing function for Uri.t
was:
val pp_hum : Format.formatter -> t -> unit
Just adding this annotation results in Uri.t
values being automatically
pretty printed in this version of utop.
val pp_hum : Format.formatter -> t -> unit [@@ocaml.toplevel_printer]
doc:
entry to opam file (#270 @avsm)We are pleased to announce the release of opam 2.0.3.
This new version contains some backported fixes:
Installation instructions (unchanged):
From binaries: run
sh <(curl -sL https://opam.ocaml.org/install.sh)
or download manually from the Github "Releases" page to your PATH. In this case, don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update you sandbox script.
From source, using opam:
opam update; opam install opam-devel
(then copy the opam binary to your PATH as explained, and don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update you sandbox script)
From source, manually: see the instructions in the README.
We hope you enjoy this new major version, and remain open to bug reports and suggestions.
NOTE: this article is cross-posted on opam.ocaml.org and ocamlpro.com. Please head to the latter for the comments!
--print-transformations
to list registered transformations
(#55, @rgrinberg)Add an (** @inline *)
to the include generated when silencing
warning 32 (#58, @trefis)
Add Ppxlib.mk_named_sig
and Ppxlib.is_polymorphic_variant
(#57,
@trefis)
version=..
, version<=..
and version>=..
keywords to run
a code-block depending on the currently installed OCaml version
(@gpetiot, #87, #90)ppx_tools
for toplevel (@avsm, #89)mdx output
: escape HTML entities in code blocks (#91, @samoht)mdx rule
command to generate dune rules (@gpetiot, #44)mdx output
command to generate an HTML document (@samoht, #45)cppo
library, just the binary (@samoht, #53)dir=..
labels in ml code blocks (@samoht, #76)mdx rule
(@samoht, #81)The dune team is pleased to announce the bug fix release of Dune 1.6.3. Normally, we don't bother announcing all bug fix releases, but this one contains quite a few fixes. I'd like to take this opportunity to encourage everyone to upgrade. Cheers.
Fix merlin handling of private module visibility (#1653 @bobot)
skip directories when looking up programs in the PATH (#1628, fixes #1616, @jeremiedimino)
Fix preprocessing for libraries with (include_subdirs ..)
(#1624, fix #1626,
@nojb, @rgrinberg)
Do not generate targets for archive that don't match the modes
field.
(#1632, fix #1617, @rgrinberg)
When executing actions, open files lazily and close them as soon as possible in order to reduce the maximum number of file descriptors opened by Dune (#1635, #1643, fixes #1633, @jonludlam, @rgrinberg, @jeremiedimino)
Do not generate targets for archive that don't match the modes
field.
(#1632, fix #1617, @rgrinberg)
Get the correct environment node for multi project workspaces (#1648, @rgrinberg)
Fix an issue causing menhir generated parsers to fail to build in
some cases. The fix is to systematically use -short-paths
when
calling ocamlc -i
(#1743, fix #1504, @jeremiedimino)
The ppxlib team is pleased to announce the release of
ppxlib 0.4.0. This release adds better
support for defining compile-time interpretation of dotted operators such as
+.+
and also improves integration with other tools such as reason or metaocaml
by no longer complaining about attributes generated by these tools. In
particular, ppxlib now treats all attributes whose name start with an _
as
machine generated attributes and doesn’t complain if it can’t decide whether
they have been correctly interpreted or not. FTR, ppxlib tries to detect
attributes and extension points that are dead-code, in order to catch typing
mistakes or misplacement.
_
(#46, fix #40, @diml)special_function
rule for dotted operators and allow
Longident.parse
to parse dotted operators (#44, @Octachron)dune
and remove use of bash (#45, @rgrinberg)_
(#46, @diml)reason
and refmt
namespaces (#46, @diml)metaocaml
namespace (#50, @rgrinberg)-loc-filename
is passed (#55, @hhugo)We are pleased to announce the release of opam 2.0.2.
As sandbox scripts have been updated, don't forget to run opam init --reinit -ni
to update yours.
This new version contains mainly backported fixes:
--alias-of
)no-aspcud
pin-depends
packages reliably/bin
or /lib
(#3661). Fixes sandboxing on some distributions such as CentOS 7 and Arch Linux.ocaml-base-compiler
⇄ ocaml
)Installation instructions (unchanged):
From binaries: run
sh <(curl -sL https://opam.ocaml.org/install.sh)
or download manually from the Github "Releases" page to your PATH. In this case, don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update your sandbox script.
From source, using opam:
opam update; opam install opam-devel
(then copy the opam binary to your PATH as explained, and don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed or to update you sandbox script)
From source, manually: see the instructions in the README.
We hope you enjoy this new minor version, and remain open to bug reports and suggestions.
NOTE: this article is cross-posted on opam.ocaml.org and ocamlpro.com. Please head to the latter for the comments!
Fix regression introduced by #1554 reported in: https://github.com/ocaml/dune/issues/734#issuecomment-444177134 (#1612, @rgrinberg)
Fix dune external-lib-deps
when preprocessors are not installed
(#1607, @diml)
Fix hash collision for on-demand ppx rewriters once and for all (#1602, fixes #1524, @diml)
Add dune external-lib-deps --sexp --unstable-by-dir
so that the output can
be easily processed by a machine (#1599, @diml)
The dune team is pleased to announce the release of Dune 1.6.0. This release does not contain any notable features or bug fixes that need to be specifically pointed out. Nevertheless, I expect that this will be a quality of life improvement to power users who have experienced dune's sharper corners.
Happy hacking!
Expand variables in install
stanzas (#1354, @mseri)
Add predicate language support for specifying sub directories. This allows the
use globs, set operations, and special values in specifying the sub
directories used for the build. For example: (dirs :standard \ lib*)
will
use all directories except those that start with lib
. (#1517, #1568,
@rgrinberg)
Add binaries
field to the (env ..)
stanza. This field sets and overrides
binaries for rules defined in a directory. (#1521, @rgrinberg)
Fix a crash caused by using an extension in a project without dune-project file (#1535, fix #1529, @jeremiedimino)
Allow %{bin:..}
, %{exe:..}
, and other static expansions in the deps
field. (#1155, fix #1531, @rgrinberg)
Fix bad interaction between on-demand ppx rewriters and using multiple build contexts (#1545, @jeremiedimino)
Fix handling of installed .dune files when the backend is declared via a
dune
file (#1551, fixes #1549, @jeremiedimino)
Add a --stats
command line option to record resource usage (#1543, @jeremiedimino)
Fix dune build @doc
deleting highlight.pack.js
on rebuilds, after the
first build (#1557, @aantron).
Allow targets to be directories, which Dune will treat opaquely (#1547, @jordwalke)
Support for OCaml 4.08: List.t
is now provided by OCaml (#1561, @ejgallego)
Exclude the local esy directory (_esy
) from the list of watched directories
(#1578, @andreypopp)
Fix the output of dune external-lib-deps
(#1594, @jeremiedimino)
Introduce data_only_dirs
to replace ignored_subdirs
. ignored_subdirs
is
deprecated since 1.6. (#1590, @rgrinberg)
Add dune external-lib-deps --sexp --unstable-by-dir
so that the output can
be easily processed by a machine (#1599, @jeremiedimino)
let f = fun x ->
and let f =\n fun x ->
Fix dune utop <dir>
when invoked from a sub-directory of the
project (#1520, fix #1518, @diml)
Fix bad interaction between on-demand ppx rewriters and polling mode (#1525, fix #1524, @diml)
On behalf of the dune team, I'm pleased to announce the 1.5.0 release of dune. This release does not contain any major features, but it does contain a few notable bug fixes and a couple of useful little additions. First of all, $ dune exec
now supports C-c
again - I know this affected many of you. This releases introduces a couple of new aliases that will hopefully find their way into your workflows.
The first alias is @all
and has been much requested by our users. $ dune build @dir/all
will build all user defined targets in a the directory dir
. This would include binaries, libraries, and user defined targets in dir
. This alias should have been the defaulted instead of @install
when running $ dune build
, but we'll have to wait until dune 2.0 to make this compatibility breaking change. In the mean time, I highly recommend everyone to use $ dune build @all
instead of $ dune build
meanwhile. You may also set the default alias per project as well:
(alias
(name default)
(deps (alias_rec all)))
The second new alias is @check
. It is inspired by cargo's check
subcommand and roughly corresponds to type checking the project and building all artifacts necessary for editor integration - cmt, cmti's, .merlin, etc. This is the fastest target to verify that a project is in a valid state. Note that this alias will not relink binaries so it might not catch errors such as missing stubs. I find this alias handy when doing large, type driven refactoring of a codebase.
The rest of the change log is replicated below. Happy hacking!
Filter out empty paths from OCAMLPATH
and PATH
(#1436, @rgrinberg)
Do not add the lib.cma.js
target in lib's directory. Put this target in a
sub directory instead. (#1435, fix #1302, @rgrinberg)
Install generated OCaml files with a .ml
rather than a .ml-gen
extension
(#1425, fix #1414, @rgrinberg)
Allow to use the bigarray
library in >= 4.07 without ocamlfind and without
installing the corresponding otherlib
. (#1455, @nojb)
Add @all
alias to build all targets defined in a directory (#1409, fix
#1220, @rgrinberg)
Add @check
alias to build all targets required for type checking and tooling
support. (#1447, fix #1220, @rgrinberg)
Produce the odoc index page with the content wrapper to make it consistent with odoc's theming (#1469, @rizo)
Unblock signals in processes started by dune (#1461, fixes #1451, @jeremiedimino)
Respect OCAMLFIND_TOOLCHAIN
and add a toolchain
option to contexts in the
workspace file. (#1449, fix #1413, @rgrinberg)
Fix error message when using copy_files
stanza to copy files from
a non sub directory with lang set to dune < 1.3 (#1486, fixes #1485,
@NathanReb)
Install man pages in the correct subdirectory (#1483, fixes #1441, @emillon)
Fix version syntax check for test
stanza's action
field. Only
emits a warning for retro-compatibility (#1474, fixes #1471,
@NathanReb)
Fix interpretation of paths in env
stanzas (#1509, fixes #1508, @jeremiedimino)
Add context_name
expansion variable (#1507, @rgrinberg)
Use shorter paths for generated on-demand ppx drivers. This is to help Windows builds where paths are limited in length (#1511, fixes #1497, @jeremiedimino)
Fix interpretation of environment variables under setenv
. Also forbid
dynamic environment names or values (#1503, @rgrinberg).
We are pleased to announce the release of opam 2.0.1.
This new version contains mainly backported fixes, some platform-specific:
gtar
And some opam specific:
test
variable warning and empty description errorlist
doesn't return non-zero code if list is empty, add --silent
option for a silent output and returns 1 if list is emptyInstallation instructions (unchanged):
From binaries: run
sh <(curl -sL https://opam.ocaml.org/install.sh)
or download manually from the Github "Releases" page to your PATH. In this case, don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed.
From source, using opam:
opam update; opam install opam-devel
(then copy the opam binary to your PATH as explained, and don't forget to run opam init --reinit -ni
to enable sandboxing if you had version 2.0.0~rc manually installed)
From source, manually: see the instructions in the README.
We hope you enjoy this new major version, and remain open to bug reports and suggestions.
NOTE: this article is cross-posted on opam.ocaml.org and ocamlpro.com. Please head to the latter for the comments!
dune-release publish doc
when using multiple packages (#96, @samoht)dune-project
files (#104. @samoht)dune-release lint
now checks that a description and a synopsis exist
in opam2 files (#101, @samoht)git checkout
fails in the local
opam-repository (#98, @samoht)_html
folder when publishing docs on Linux
(#94, @anuragsoni and @samoht)Additions
odoc
binary is now self-contained and requires no external
files (bd3b53c).--theme-uri
option (#154, Rizo Isrof)..mld
to HTML fragments rather than complete pages
(#166, Rizo Isrof).Bugs fixed
page-
to output file name when compiling .mld
files
(#183, Rizo Isrof).floatarray
type introduced in OCaml 4.06 (eb36158, Thomas
Refis).<i>
tags in italics (#104, Thibault Suzanne).Build and development
odoc
is now one repo.CONTRIBUTING.md
, tests,
coverage analysis, CI, and issue organization.The dune team is pleased to announce the 1.4.0 release of Dune. The highlight of this release is the improved support for menhir, in particular the long awaited --infer
flag. This seemingly small feature took quite a bit of coordination between the maintainers of dune and menhir. So I'd like to thank @fpottier for helping us out with this by adding better support for dune in menhir itself, and implementing the majority of the support in dune as well.
The rest of the release is mostly bug fixes, but one notable feature is that dune is now C-c
friendly. Dune will now resume exactly where it's stopped after interruption instead of restarting the entire build.
EDIT: I actually forgot to mention that this release also includes integration with OCamlFormat due to @emillon. Initially, I had thought that this feature was released in 1.3.0. Sorry about that!
Do not fail if the output of ocamlc -config
doesn't include
standard_runtime
(#1326, @jeremiedimino)
Let Configurator.V1.C_define.import
handle negative integers
(#1334, @Chris00)
Re-execute actions when a target is modified by the user inside
_build
(#1343, fix #1342, @jeremiedimino)
Pass --set-switch
to opam (#1341, fix #1337, @jeremiedimino)
Fix bad interaction between multi-directory libraries the menhir
stanza (#1373, fix #1372, @jeremiedimino)
Integration with automatic formatters (#1252, fix #1201, @emillon)
Better error message when using (self_build_stubs_archive ...)
and
(c_names ...)
or (cxx_names ...)
simultaneously.
(#1375, fix #1306, @nojb)
Improve name detection for packages when the prefix isn't an actual package (#1361, fix #1360, @rgrinberg)
Support for new menhir rules (#863, fix #305, @fpottier, @rgrinberg)
Do not remove flags when compiling compatibility modules for wrapped mode (#1382, fix #1364, @rgrinberg)
Fix reason support when using staged_pps
(#1384, @charlesetc)
Add support for enabled_if
in rule
, menhir
, ocamllex
,
ocamlyacc
(#1387, @jeremiedimino)
Exit gracefully when a signal is received (#1366, @jeremiedimino)
Load all defined libraries recursively into utop (#1384, fix #1344, @rgrinberg)
Allow to use libraries bytes
, result
and uchar
without findlib
installed (#1391, @nojb)
Take argument to self_build_stubs_archive into account. (#1395, @nojb)
Fix bad interaction between env
customization and vendored
projects: when a vendored project didn't have its own env
stanza,
the env
stanza from the enclosing project was in effect (#1408,
@jeremiedimino)
Fix stop early bug when scanning for watermarks (#1423, @struktured)
::
(#452, @jberdine)function%ext
(#416, @hhugo)while%ext
/for%ext
(@hhugo)