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 ---- diff --git a/source/dub/version_.d b/source/dub/version_.d index 38be48647..bd3a325f5 100644 --- a/source/dub/version_.d +++ b/source/dub/version_.d @@ -1,2 +1,2 @@ module dub.version_; -enum dubVersion = "v1.37.0-rc.1"; +enum dubVersion = "v1.37.0";