From 203dc55ce3db4d84a719324c5c330da23b457317 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Mon, 1 Apr 2024 18:41:20 +0000 Subject: [PATCH 1/2] update version to v1.37.0 --- source/dub/version_.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; From 4a6b11ffea24471041b277aec32fcf139e78c2ef Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Mon, 1 Apr 2024 20:12:42 +0000 Subject: [PATCH 2/2] 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 ----