diff --git a/changelog/minDubVersion.dd b/changelog/minDubVersion.dd index 81f0acb..79d91f0 100644 --- a/changelog/minDubVersion.dd +++ b/changelog/minDubVersion.dd @@ -1,6 +1,17 @@ -Dub now supports a $(D_INLINECODE "minDubVersion") field, that will abort build if -the user does not have a recent enough version of dub and miss essential feature -to perform the build. +Dub now supports a `minDubVersion` field. + +This field will abort the build if the user doesn't have a recent enough version of dub +and miss needed feature to perform the build. + +`minDubVersion` can be added to project's `dub.json`: ------- +{ + ... "minDubVersion": "1.10" + ... +} +------ +or `dub.sdl`: +------ +minDubVersion "1.10" ------