From c28c50a8138a6ac533c6f0561947e0c02c939c8e Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Tue, 16 May 2023 07:52:15 +0000 Subject: [PATCH 1/3] update version to v1.33.0-rc.1 --- 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 611ecc297..fc9a9f87f 100644 --- a/source/dub/version_.d +++ b/source/dub/version_.d @@ -1,2 +1,2 @@ module dub.version_; -enum dubVersion = "v1.33.0-beta.1"; +enum dubVersion = "v1.33.0-rc.1"; From 54339dff7ce9ec24eda550f8055354f712f15800 Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Fri, 2 Jun 2023 08:46:39 +0000 Subject: [PATCH 2/3] update version to v1.33.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 fc9a9f87f..17cb756b1 100644 --- a/source/dub/version_.d +++ b/source/dub/version_.d @@ -1,2 +1,2 @@ module dub.version_; -enum dubVersion = "v1.33.0-rc.1"; +enum dubVersion = "v1.33.0"; From d779b27a37ca80c6a245e8d942a6f95bf6d6bd0e Mon Sep 17 00:00:00 2001 From: Iain Buclaw Date: Fri, 2 Jun 2023 10:05:19 +0000 Subject: [PATCH 3/3] purge changelog --- .../collect_c_source_and_headers_for_ImportC.dd | 9 --------- changelog/hierarchy.dd | 16 ---------------- 2 files changed, 25 deletions(-) delete mode 100644 changelog/collect_c_source_and_headers_for_ImportC.dd delete mode 100644 changelog/hierarchy.dd diff --git a/changelog/collect_c_source_and_headers_for_ImportC.dd b/changelog/collect_c_source_and_headers_for_ImportC.dd deleted file mode 100644 index 59bc29df1..000000000 --- a/changelog/collect_c_source_and_headers_for_ImportC.dd +++ /dev/null @@ -1,9 +0,0 @@ -Add new properties 'cSourcePaths' and 'cImportPaths' to SDL/JSON - -`cSourcePaths` passes the C source files in all specified directories to the compiler. -All C sources found in the given directories for 'cImportPaths' are passed to the D compiler. -This ensures backward compatible behaviour for projects that stored C sources aside of D source file, while porting them to D. - -The second keyword 'cImportPaths' will add additional search paths for C headers. These directories are passed to the D compilers -as addition include paths. The feature might need additional tweaking, because the include paths are currently joint with the -D import paths. This might change in future to support independant search paths for C to be passed to the D compilers. diff --git a/changelog/hierarchy.dd b/changelog/hierarchy.dd deleted file mode 100644 index c087297a7..000000000 --- a/changelog/hierarchy.dd +++ /dev/null @@ -1,16 +0,0 @@ -The way packages are stored internally has changed - -Previous versions of dub stored packages in the following format: -`$CACHE_PATH/$PACKAGE_NAME-$PACKAGE_VERSION/$PACKAGE_NAME/` -Starting from this version, the format will be: -`$CACHE_PATH/$PACKAGE_NAME/$PACKAGE_VERSION/$PACKAGE_NAME`. - -Introducing a new level will help users quickly list what packages -they actually have installed, and reduce visibility of packages that -might update frequently. It will render various commands (e.g. `du`) -more useful, pave the way for a package GC function, and make manual -browsing easier. - -More importantly, it will allow future version of dub to infer the -version from the path to the package, removing the need to read (or edit) -the recipe file on every dub invocation.