purge changelog
1 parent e383847 commit 0699f67a107996d8d520756041415d8b3fc58051
@Iain Buclaw Iain Buclaw authored on 1 Apr 2024
Nicholas Wilson committed on 1 Apr 2024
Showing 1 changed file
View
22
changelog/dub-fetch.dd 100644 → 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
---