Newer
Older
dub_jkp / changelog / dub-fetch.dd
  1. The fetch command now supports multiple arguments, recursive fetch, and is project-aware
  2.  
  3. Previously, `dub fetch` could only fetch a single package,
  4. and was working independently of the working directory.
  5.  
  6. With this release, support for multiple packages have
  7. been added, such that the following is now possible:
  8. ---
  9. $ dub fetch vibe-d@0.9.0 vibe-d@0.9.1 vibe-d@0.9.2
  10. ---
  11.  
  12. When called with no argument, `dub fetch` used to error out.
  13. However, it will now attempt to fetch dependencies for the
  14. current project, if any exists.
  15.  
  16. Finally, when fetching a package, it might be useful to fetch
  17. all its dependencies. This is done automatically for projects,
  18. and can now be done for direct fetch as well:
  19. ---
  20. $ dub fetch --recursive vibe-d@0.9.0 vibe-d@0.9.1
  21. ---