Releases: ocaml/opam
2.2.0~beta1
This is the first beta release of opam 2.2.0.
This beta release contains new features, enhancements, updates & fixes compared to the previous 2.2.0~alpha3 release. Please see blog post for main new features highlights and upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
, PR open to upload new ones).
Major changes
Init
- Check and advertise to use Git for Windows [#5718 @rjbou - fix #5617]
- Add the
--git-location
and--no-git-location
cli arguments for Windows [#5718 @rjbou - fix #5617]
Option
Build
- When compiling opam on Windows with MinGW, the resulting opam binary now contains
libstdc++
instead of requiring the DLL to be distributed alongside it or present in the environment [#5680 @kit-ty-kate - fix #5647] - Add
./configure --enable-static
to compile the opam binary statically on Linux [#5680 @kit-ty-kate - fix #5647]
Env
- Fix
opam env
containing carriage return on Cygwin [#5715 @dra27 @rjbou @kit-ty-kate - fix #5684] - Remove stray comments from pwsh and cmd env [#5715 @dra27]
Miscellaneous changes
Solver
- Fix debug logs showing up regardless of verbosity on macOS 12.7.1 / 13.6.3 / 14.2 and FreeBSD [#5769 @kit-ty-kate]
Build
- Upgrade to, and require mccs >= 1.1+17 [#5769 @kit-ty-kate]
Tree
- Fix
opam tree --dev
[#5687 @rjbou - fix #5675] - Fix
opam tree --no-switch
: instead of emptying the current switch from its installed packages, it load a fresh virtual switch [#5687 @rjbou - fix #5675]
Switch
- Display a more precise message when Ctrl-C'ing during an opam switch creation ("Switch left partially installed") [#5713 @rjbou - fix #5710]
Documentation
Testing
API updates
opam-client
OpamClient
: oninit
andreinit
add git lookup in windows checks [#5718 @rjbou]OpamClient.init
: add optiongit-location
argument for git binary location configuration [#5718 @rjbou]OpamTreeCommand.run
: remove optional argumentno_switch
[@rjbou #5687]
opam-format
opam-core
2.2.0~alpha3
This is the third alpha release of opam 2.2.0.
This alpha release contains new features, enhancements, updates & fixes. Please see blog post for main new features highlights and upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Major changes
Environment variables path rewriting
- When computing environment variables updates, use rewriting rules (defined in opam file, or default per variable) to split, join, quote, etc. [#5636 @rjbou - fix #5602 #4690 #2927]
- Add
x-env-path-rewrite
extensions field to permit specification of rewriting rules for variables defined insetenv
andbuild-env
: no rewrite; separator and path format formulae [#5636 @rjbou - fix #5602 #4690 #2927] - Reinstall if
x-env-path-rewrite
is updated [#5636 @rjbou] environment
file now stores environment variable rewriting rules [#5636 @rjbou]
Sandbox
- Make /tmp writable again to restore POSIX compliancy [#5634 #5662 @kit-ty-kate - fixes #5462]
Tree
- Allow packages with a specific version, directories or local opam files, as input [#5613 @kit-ty-kate]
- Add handling of
--recurse
and--subpath
for directory arguments [#5613 @kit-ty-kate]
Admin
- Add
add-extrafiles
command to add, check, and updateextra-files:
field according files present infiles/
directory [#5647 @rjbou]
Lint
- Allow to mark a set of warnings as errors using a new syntax
-W @1..9
[#5652 @kit-ty-kate @rjbou - fixes #5651]
Miscellaneous changes
Global CLI
- [BUG] Fix the
OPAMVERBOSE
setting, levels 0 and 1 were inverted: "no" gave level 1, and "yes" gave level 0 [#5686 @smorimoto]
Install
- [BUG] On install driven by
.install
file, track intermediate directories too, in order to have them suppressed at package removal [#5691 @rjbou - fix #5688] - [BUG] With
--assume-built
, resolve variables in depends filter according switch & global environment, not only depends predefined variables [#570 @rjbou - fix #5698] - [BUG] Handle undefined variables defaults to false in dependencies formula resolution for assume built [#5701 rjbou]
Lint
- [BUG] Fix extra-files handling when linting packages from repositories, see #5068 [#5639 @rjbou]
- Improve the debug log when checking extra-files [#5640 @rjbou]
Repository
Opamfile
Build
- [BUG] Fix "make cold" on Windows when gcc is available [#5635 @kit-ty-kate - fixes #5600]
- Fix incorrect error message when alternate C compiler is missing [#5667 @dra27 - partial fix #5661]
Internal: Windows
Release
- Create ppc64le and s390x binaries during releases [#5420 @kit-ty-kate]
- Workaround incorrect
<limits.h>
in musl [#5383 @dra27] - Upgrade to FreeBSD 13.2 and OpenBSD 7.4 [#5727 @kit-ty-kate]
- Fix check for adding
-lsha_stubs
only onmaster
on OpenBSD [#5733 @punchagan]
Documentation
Testing
- Improve and extend tests [#5560 #5600 #5607 #5636 #5639 #5647 #5672 #5686 #5691 #5700 #5701 @kit-ty-kate @rjbou]
- Improve test engine [#5560 #5606 #5607 #5654 #5657 @rjbou]
API updates
opam-client
OpamTreeCommand.run
: now takes anatom
instead ofname
[#5613 @kit-ty-kate]
opam-format
OpamFile.Environment
: add parsing-printing of rewriting rules, keeping backward compatibility [#5636 @rjbou]OpamFile.OPAM
:effective_part
keepsx-env-path-rewrite
, affects alsoeffectively_equal
[#5636 @rjbou]OpamFile.OPAM
: add handling ofx-env-path-rewrite
extensions field, that specifies rewrite rules [#5636 @rjbou]OpamFilter
: addexpand_interpolations_in_file_full
which allows setting the output file along with the input file [#5629 @rgrinberg]OpamFilter
: exposestring_interp_regex
which allows clients to identify variable interpolations in strings [#5633 @gridbugs]OpamFormat.V
: addpath_format
&separator
value parser printer [#5636 @rjbou]OpamFormat
: addformula_items
to permit definition of formulae pp not only of the typepackage-formula
[#5636 @rjbou]OpamPp.fallback
: add name concatenation and printing fallback too [#5636 @rjbou]OpamTypes.env_update
: add arewrite
field, that contains environment variable rewriting rules (formula to resolved, or already resolved, or no rewriting) [#5636 @rjbou]OpamTypes.env_update
: change from tuple to a record [#5636 @rjbou]OpamTypesBase
: addenv_update_resolved
andenv_update_unresolved
builders [#5636 @rjbou]OpamTypesBase
: addenv_update
,env_update_resolved
, andenv_update_unresolved
builders [#5636 @rjbou]OpamTypesBase
: add to_string function forpath_format
&separator
[#5636 @rjbou]
opam-core
OpamStd.Config.env_level
: fix level parsing, it was inverted (eg, "no" gives level 1, and "yes" level 0) [#5686 @smorimoto]OpamStd.Sys.chop_exe_suffix
: removes.exe
from the end of a path, if present [#5714 @dra27]OpamSystem.apply_cygpath_path_transform
: fix cygpath call, use resolved name [#5716 @rjbou]OpamSystem.get_cygpath_path_transform
: add labeled argument to specify if path is a pathlist [#5636 @rjbou]OpamSystem.mk_temp_dir
: resolve real path withOpamSystem.real_path
before returning it [#5654 @rjbou]OpamSystem.resolve_command
: in command resolution path, check that the file is not a directory and that it is a regular file [#5606 @rjbou - fix #5585 #5597 #5650 #5626]
2.2.0~alpha2
This is the second alpha release of opam 2.2.0.
This alpha release contains new features, enhancements, updates & fixes. Please see blog post for main new features highlights and upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
New feature
Init
- Make
opam init
install Cygwin internally automatically by default instead of asking the user to install it manually [#5545 @rjbou @dra27] - Add
--no-cygwin-setup
,--cygwin-internal-install
,--cygwin-local-install
and--cygwin-location <path>
experimental flags available only on Windows to permit non-interactive Cygwin configuration [#5545 @rjbou]
Enhancements, updates, and fixes
Var/Option
- Error with more accurate message in case of package/self variable wrongly given as argument [#4903 @rjbou - fix #4489]
- Handle package variable syntax in parse update regexp [#4903 @rjbou - fix #4489]
Lint
- E29: The conflicts field's filter does not support package variables [#5535 @kit-ty-kate]
Admin
Build
- Run autoupdate to silence autogen warnings [#5555 @MisterDA]
- Update bootstrap to use FlexDLL 0.43 from ocaml/flexdll [#5579 @MisterDA]
- configure: Ensure a complementary (32bit on 64bit platforms and 64bit on 32bit platforms) C compiler is installed on Windows [#5522 @kit-ty-kate]
- Bump version, authors [#5603 #5609 #5611 @rjbou]
Testing
Improve and extend tests
Improve test engine
Cram tests
Github Actions
opam-client
OpamInitDefault
: addrequired_packages_for_cygwin
packages tool list [#5545 @rjbou]OpamClient.init
: now propose to install internal Cygwin install [#5545 @rjbou]OpamSolution.get_depext
: do not confirm in case of internal Cygwin install [#5545 @rjbou]OpamClient.init
: add optionalcygwin_setup
argument to permit non interactive setup [#5545 @rjbou]OpamCommands.init
: add cygwin setup flags [#5545 @rjbou]
opam-state
2.2.0~alpha
This is the alpha release of opam 2.2.0.
This alpha release contains new features, enhancements, updates & fixes. Please see blog post for main new features highlights and upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Changelog (possibly scripts breaking changes are prefixed with ✘):
New features
Windows Support
Opam 2.2 comes with native Windows compatibility. You can now use opam from your preferred Windows terminal! We rely on the Cygwin UNIX-like environment for Windows as a compatibility layer, but it is possible for packages to generate native executables.
For more details, see blog post entry.
- Support MSYS2 on Windows for depexts [#5348 @jonahbeckford #5433 @rjbou]
- Don't require cc on Windows [#5541 @dra27]
- Generate init and variables for Windows [#5541 @dra27]
- When defined, add Cygwin binary path to build environment [#5543 @rjbou]
- Depexts support Cygwin on Windows [#5542 @rjbou] [#5544 @rjbou]
- On Windows, ask for pre-existent Cygwin installation, check it, and configure opam with it [#5544 @dra27 @rjbou]
Recursive Pin
Recursive pinning allows to have opam lookup for opam files into subdirectories. It provides 2 new options --recursive
and --subpath <path>
that permit, respectively, to lookup recursively in directories, and to focus on a given directory. They can be combined.
For more details, see blog post entry.
Tree
opam tree
show packages and their dependencies on a tree view. It can also display a reverse-dependency tree (through opam why, which is an alias to
opam tree --rev-deps`), which can be useful to examine how dependency versions get constrained.
For more details, see blog post entry.
- Add
tree
subcommand to display a dependency tree of currently installed packages [#5171 @cannorin - fix #3775] - Add
why
subcommand to examine how the versions of currently installed packages get constrained (alias totree --rev-deps
) [#5171 @cannorin - fix #3775] tree
subcommand now supports--json
option [#5303 @cannorin - fix #5298]
Recommended development tools
There is now a way for a project maintainer to share their project developments tools: the with-dev-setup
dependency flag. It is used in the same way as with-doc
and with-test
.
For more details, see blog post entry.
- Add
--dev-setup
option to install recommended development tools from opam file (aswith-test
/with-doc
), and its environment variableOPAMWITHDEVSETUP
, and for post-messages [#5016 #5160 #5214 @rjbou - fix #4959] - Opam file: Add
with-dev-setup
variable for recommended tools [#5016 #5214 @rjbou]
Software Heritage binding
Opam now integrates a fallback to Software Heritage archive retrieval, based on SWHID. If an SWHID url is present in an opam file, the fallback can be activated.
For more details, see blog post entry.
- Add Software Heritage fallback when downloading archive source, triggered when all urls and cache fails, with confirmation [#4859 @rjbou @zapashcanon]
- Add swhid url handling in url field [#4859 @rjbou @zapashcanon]
Formula (experimental)
It is now possible to leverage the full expressivity of package dependency formulas from the command-line during switch creation and package operations.
New options
Pin
- New option
opam pin --current
to fix a package to its current state (disabling pending reinstallations or removals from the repository) [#4973 @AltGr - fix #4970] - Add
opam pin remove --all
to remove all the pinned packages from a switch [#5308 @kit-ty-kate] - Allow
opam pin remove
to take a package (<pkg>.<version>
) as argument [#5325 @kit-ty-kate]
Exec
- Add
opam exec --no-switch
to remove opam environment from launched command [#4957 @kit-ty-kate - fix #4951]
Source
Clean
Switch
- Add support for
opam switch -
that goes to previous selected global switch [#4910 @kit-ty-kate - fix #4688] - ✘ Change
--base
into--invariant
, column name and the content is invariant formula installed dependencies [#5208 @rjbou]
Admin
- Add
opam admin add-constraint <cst> --packages
to select a subset of packages to apply constraints [#5386 @rjbou - fix #3077]
Repository
- Add
OPAMREPOSITORYTARRING
environment variable to enable repository tarring optimisation, it is disabled by default because it is an optimisation only on some os/configurations [#5015 @rjbou]
Enhancements, updates, and fixes
Initialisation
opam init
- Run the sandbox check in the temporary directory [#4787 @dra27 - fix #4783] {2.1.1}
- Use
.opam
from%HOME%
or%USERPROFILE%
on Windows, only if found; otherwise use%LOCALAPPDATA%\opam
as root. [#5212 @dra27] - Display actual location of OPAMROOT in
opam init
if--root
orOPAMROOT
have been set [#5212 @dra27 - fix #4992] - Surround and add a comment describing the role of the lines added to the ~/.profile or equivalent [#5456 @kit-ty-kate]
- Use menu for init setup [#5057 @AltGr #5217 @dra27]
- ✘ Change default from no to yes for shell update [#5456 #5540 @rjbou @kit-ty-kate]
Fixes
- Fix
opam init
andopam init --reinit
when thejobs
variable has been set in the opamrc or the current config. [#5056 @rjbou] {2.1.3}
Variable & option configuration
- Handle empty environment variable updates - missed cherry-pick from 2.0 [#4840 @dra27] {2.1.1}
- When a field is defined in switch and global scope, try to determine the scope also by checking switch selection [#5027 @rjbou] {2.1.3}
- Resolve and use global config and environment variable before polling system informations (os, os-family, etc.) [#4892 @rjbou - fix #4883]
- Catch an package not found error and print skipping message [#5280 @rjbou - fix #5279]
- Make
archive-mirrors
modifiable (extendable) via opam config [#5321 @hannesm @rjbou - fix #5316] - Open the release files when determining the distribution [#5568 @Leonidas-from-XIV
Fixes
- Fix
OPAMCURL
andOPAMFETCH
value setting [#5111 @rjbou - fix #5108] - Don't error when displaying if switch is not set [#5027 @rjbou - fix #5025] {2.1.3}
- Try to set a variable with option
--switch <sw>
fails instead of writing a wrongswitch-config
file [#5027 @rjbou] {2.1.3} - Fix typo in error message for opam var [#4786 @kit-ty-kate - fix #4785] {2.1.1}
Config report
Fixes
CLI
- Add CLI 2.2 handling [#4853 @rjbou] {2.1.1}
--no-depexts
is the default in CLI 2.0 mode [#4908 @dra27] {2.1.2}- Error report display: print action name [#5045 @AltGr]
- Add
experimental
flags handling [#5099 @rjbou] - Put back support for switch creation with packages argument and
--packages
option with CLI 2.0, and a specific error message for CLI 2.1 [#4853 @rjbou - fix #4843] {2.1.1}
Fixes
Client
- Check whether the repository might need updating more often [#4935 @kit-ty-kate]
- ✘ It is no longer possible to process actions on packages that depend on a package that was removed upstream [#4969 @AltGr]
- ✘ PEF output: change
base
field intoinvariant-pkg
[#5208 @rjbou]
Fixes
- Fix all empty conflict explanations [#4982 #5263 @kit-ty-kate] {2.1.4 partially} {2.1.3}
- Fix passing
archive-mirrors
field from init config file to config [#5315 @hannesm] {2.1.5} - Fix json double printing [#5143 @rjbou]
Download optimisation
- Factorise source-archive fetching. If several packages relies on the same archive, it is downloaded once then copied to several source directories [#4893 @rjbou - fix #3741]
Install
- Reimplement deps-only [#4975 @AltGr]
- Log a summary of recorded
.changes
as aACTION
trace log to help debug #4419 [#5144 @na4zagin3] - Use the default criteria during reinstall/upgrade when requesting at least one non-installed package [#5228 @kit-ty-kate]
Fixes
- Prevent
.changes
files from being updated during dry-run [#5144 @na4zagin3 - fix #5132]
UI
- Add subpath on actions listing urls [#4876 @rjbou]
- Make the status of pinned packages more explicit during installation [#4987 @kit-ty-kate - fix #4925]
- Refresh the actions list output, now sorted by action/package rather than dependency [#5045 @kit-ty-kate @AltGr - fix #5041]
- Put back the actions summary as part of confirmation question [#5045 @AltGr]
- Fix display of pinned packages in action list [#5079 @rjbou]
- Show the reason for installing packages when using opam re...
2.1.5
This is the release of opam 2.1.5.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Please see our blog post for a highlight on the major changes and upgrade instructions.
- [BUG] Variables are now expanded in build-env (as for setenv) [#5352 @dra27]
- Correctly handle empty environment variable additions [#5350 @dra27]
- Skip empty environment variable additions [#5350 @dra27]
- [BUG] Fix passing
archive-mirrors
field from init config file to config [#5315 @hannesm] - git, hg: Use the full SHA1 revision instead of just the 8 first characters [#5342 @reynir]
- [BUG] Fix opam installing packages without checking their checksum when the local cache is corrupted in some case [#5538 @kit-ty-kate]
EDIT 31/05/2023: opam-full-2.1.5.tar.gz
was rebuilt, removing the mistakenly included .gît
directory, reducing archive size.
2.1.4
This is the release of opam 2.1.4.
This minor release contains some fixes, please see blog post for upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
- Add support for OCaml 5.0.
dose3 >= 6.1
andbase64 >= 3.1.0
are now required [#5357 @kit-ty-kate @dra27 - fix #5354] - [BUG] Fix all empty conflict explanation messages [#5378 @kit-ty-kate - partial fix #4373]
2.1.3
This is the release of opam 2.1.3.
This minor release contains some fixes, please see blog post for upgrade instructions.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Fixes
Init
- Fix
opam init
andopam init --reinit
when thejobs
variable has been set in the opamrc or the current config. [#5056 @rjbou]
Switch
- When inferring a 2.1+ switch invariant from 2.0 base packages, don't filter out pinned packages as that causes very wide invariants for pinned compiler packages [#5176 @dra27 - fix #4501]
Pin
- When reinstalling a package that has a dirty source, if uncommitted changes are the same than the ones stored in opam's cache , opam consider that it is up to date and nothing is updated [#4879 @rjbou]
List
- Some optimisations to
opam list --installable
queries combined with other filters [#4882 @AltGr - fix #4311] - Improve performance of some opam list combinations (e.g.
--available
,--installable
) [#4999 @kit-ty-kate] - Improve performance of
opam list --conflicts-with
when combined with other filters [#4999 @kit-ty-kate]
Show
- Improve performance of
opam show
by as much as 300% when the package to show is given explicitly or is unique [#4998 @kit-ty-kate - fix #4997 and partially #4172] - Handle external dependencies when updating switch state pin status (all pins), instead as a post pin action (only when called with
opam pin
[#5047 @rjbou - fix #5046]
Var/Option
opam var
no longer fails if no switch is set [#5027 @rjbou - fix #5025]- Setting a variable with option
--switch <sw>
fails instead of writing an invalidswitch-config
file [#5027 @rjbou] - When a field is defined in switch and global scope, try to determine the scope also by checking switch selection [#5027 @rjbou]
External dependencies
- Stop Zypper from upgrading packages on updates on OpenSUSE [#4978 @kit-ty-kate]
Sandbox
State
Client
- Fix some empty conflict explanations [#4982 @kit-ty-kate - partially fix #4373]
Internal
Admin
Misc
Build
- Update cold compiler to 4.13 to avoid issues with glibc 2.34 on Unix [#5017 @dra27]
- Bump opam-file-format to 2.1.4 [#5117 @kit-ty-kate - fix #5116]
- When building opam, do not fail if curl/wget is missing [#5223 #5233 @kit-ty-kate]
Documentation
- Fix
make doc
with Dune 2.7 (unblocksopam2web
build) [#5030 @kit-ty-kate] - Update for git protocol deprecation on GitHub [#5097 @rjbou]
Tests
- Port some tests from master [#4841 #4974 #4861 #4915 #4979 #5004 #5006 #5015 #5024 #5025 #5031 #5131 #5176 @AltGr @dra27 @rjbou @kit-ty-kate]
- Update test engine to allow for additional tests [#4913 #4966 #4979 #5004 #5009 #5024 #5097 @AltGr @kit-ty-kate @rjbou]
API updates
opam-client
OpamClient
: fixupdate_with_init_config
, whenjobs
was set ininit_config
, it dropped rest ofconfig
update [#5056 @rjbou]OpamConfigCommand
:set_opt_switch
,set_var_switch
,options_list_switch
, andvar_list_switch
now raise configuration error exception (50) if no switch is found [#5027 @rjbou]OpamClient.Pin.post_pin_action
: no more updates depexts information, moved toOpamSwitchState.update_pin
[#5047 @rjbou]
opam-repository
OpamVCS.VCS
: add aclean
function to the interface clearing all the uncommited files [#4879 @rjbou]OpamVCS.pull_url
: clean repository before fetching [#4879 @rjbou]
opam-state
OpamSwitchState.update_pin
: updates depexts state informations (sys_packages
,avalaible_packages
) [#5047 @rjbou]
opam-core
2.1.2
This is the release of opam 2.1.2.
Binaries and full archive are signed by the opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Changelog:
- Fallback on dnf if yum does not exist on RHEL-based systems [#4825 @kit-ty-kate]
- Use --no-depexts in CLI 2.0 mode [#4908 @dra27]
- bootstrap: update ocaml version (fixes the compilation of opam with mingw) [#4927 @kit-ty-kate]
2.1.1
This is the release of opam 2.1.1.
Binaries and full archive are signed by by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).
Bug fixes
Switch
- Put back support for switch creation with packages argument and
--packages
option with cli 2.0, and a specific error message for cli 2.1 [#4853 @rjbou - fix #4843] - Fix
set-invariant
: default repos were loaded instead of switch repos [#4866 @rjbou]
External dependencies
- Homebrew: Add support for casks and full-names [#4801 @kit-ty-kate]
- Archlinux: handle virtual package detection [#4833 @rjbou - partial fix #4759]
- Disable the detection of available packages on RHEL-based distributions. This fixes an issue on RHEL-based distributions where yum list used to detect available and installed packages would wait for user input without showing any output and/or fail in some cases [#4791 @kit-ty-kate - fixes #4790]
Sandbox
System
- Fix reverting environment additions to PATH-like variables when several dirs added at once [#4861 @dra27]
- Ensure setenv can use package variables defined during the build [#4841 @dra27]
- OpamSystem: avoid calling Unix.environment at top level [#4789 @hannesm] [#4802 @kit-ty-kate - fix #4801]
- Handle empty environment variable updates - missed cherry-pick from 2.0 [#4840 @dra27]
opam build
- Fix the cold target in presence of an older OCaml compiler version on macOS
- Fix vendored build on mingw-w64 with g++ 11.2 [#4835 @dra27]
- Fix dose3 download url since gforge is gone [#4870 @avsm]
Misc
- Fix typo in error message for opam var [#4786 @kit-ty-kate - fix #4785]
Many thanks to @AltGr and @rjbou (OCamlPro), @dra27 and @kit-ty-kate (OCaml Labs), @hannesm, @avsm and everyone who's helped with issue reports, comments and feedback.
2.0.10
This is the release of opam 2.0.10.
Binaries and full archive are signed by opam dev team (fingerprint 92C5 26AE 50DF 3947 0EB2 911B ED4C F1CA 67CB AA92
).