From 0699f67a107996d8d520756041415d8b3fc58051 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Mon, 1 Apr 2024 20:12:42 +0000 Subject: [PATCH] purge changelog --- changelog/dub-fetch.dd | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 changelog/dub-fetch.dd diff --git a/changelog/dub-fetch.dd b/changelog/dub-fetch.dd deleted file mode 100644 index a4d5556e6..000000000 --- a/changelog/dub-fetch.dd +++ /dev/null @@ -1,21 +0,0 @@ -The fetch command now supports multiple arguments, recursive fetch, and is project-aware - -Previously, `dub fetch` could only fetch a single package, -and was working independently of the working directory. - -With this release, support for multiple packages have -been added, such that the following is now possible: ---- -$ dub fetch vibe-d@0.9.0 vibe-d@0.9.1 vibe-d@0.9.2 ---- - -When called with no argument, `dub fetch` used to error out. -However, it will now attempt to fetch dependencies for the -current project, if any exists. - -Finally, when fetching a package, it might be useful to fetch -all its dependencies. This is done automatically for projects, -and can now be done for direct fetch as well: ---- -$ dub fetch --recursive vibe-d@0.9.0 vibe-d@0.9.1 ----