From 1dad6604d1d363e476fb60128e26037d71db5bfc Mon Sep 17 00:00:00 2001 From: Ali Caglayan Date: Thu, 6 Jul 2023 16:49:03 +0200 Subject: [PATCH] show: print_rules now part of show command (#8000) --- CHANGES.md | 2 ++ bin/describe/describe.ml | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index da425c234ec..9a6af4ec030 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,8 @@ Unreleased - Initialize async IO thread lazily. (#8122, @emillon) +- Add `dune show rules` as alias of `dune rules` command. (#8000, @Alizter) + - Add `dune build --dump-gc-stats FILE` argument to dump Garbage Collection stats to a named file. (#8072, @Alizter) diff --git a/bin/describe/describe.ml b/bin/describe/describe.ml index 3d0a7003d46..3db3abc8443 100644 --- a/bin/describe/describe.ml +++ b/bin/describe/describe.ml @@ -13,6 +13,7 @@ let subcommands = ; Describe_opam_files.command ; Describe_pp.command ; Printenv.command + ; Print_rules.command ; Aliases_targets.Targets_cmd.command ; Aliases_targets.Aliases_cmd.command ]