diff --git a/changelog/cwd-fix.dd b/changelog/cwd-fix.dd deleted file mode 100644 index 16d1ca5..0000000 --- a/changelog/cwd-fix.dd +++ /dev/null @@ -1,12 +0,0 @@ -Reverted v1.31.0 working directory change when using `dub run --root=` - -DUB < v1.31.0 would run applications in the working directory it was invoked in, -ignoring the `--root` argument. - -In v1.31.0, `dub` started to respect the `--root` argument and run programs in -the requested directory. - -While sometimes desirable, this change was not intended, and has now been -reverted. To restore the 1.31.0 behaivor, set `"workingDirectory"` to `"."` in -the dub.json/dub.sdl file. This works both with older DUB versions and with -future DUB versions. diff --git a/changelog/path-dep-fix.dd b/changelog/path-dep-fix.dd deleted file mode 100644 index 2798729..0000000 --- a/changelog/path-dep-fix.dd +++ /dev/null @@ -1,7 +0,0 @@ -Path dependencies of path-based sub-packages have been fixed - -Path-based dependencies in path-based sub-packages in DUB v1.30.0 and 1.31.0 -have had regressed and didn't resolve properly. (dub.selections.json could be -used to workaround this issue before) - -From this release, these resolve properly again. diff --git a/source/dub/packagemanager.d b/source/dub/packagemanager.d index 7cbb9b1..04c82e3 100644 --- a/source/dub/packagemanager.d +++ b/source/dub/packagemanager.d @@ -234,7 +234,7 @@ ovr.target.match!( (any) { logWarn("Package override %s %s -> '%s' doesn't reference an existing package.", - ovr.package_, ovr.version_, any); + ovr.package_, ovr.source, any); }, ); } diff --git a/source/dub/version_.d b/source/dub/version_.d index d28ea61..454b837 100644 --- a/source/dub/version_.d +++ b/source/dub/version_.d @@ -1,2 +1,2 @@ module dub.version_; -enum dubVersion = "v1.31.1-beta.1"; +enum dubVersion = "v1.31.1";