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 59bc29d..0000000 --- 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 c087297..0000000 --- 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.