dmd/changelog
2025-03-23 05:59:00 +08:00
..
dmd.auto-ref-local.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.auto-ref-put-adjacent.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.auto-ref-return.dd Require adjacent auto ref return as well (#21061) 2025-03-23 05:59:00 +08:00
dmd.default-align.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.delete-keyword.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.deprecation-case.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.deprecation-dtor-fields.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.deprecation-noop-assignment.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.deprecation-pointer-subtract.dd Fix #20330 - Make subtracting pointers of different types an error 2025-01-08 15:44:38 +08:00
dmd.deprecation-throwing-contracts.dd [Deprecation -> Error] nothrow function contracts that throw (#16801) 2024-08-26 11:36:18 +03:00
dmd.deprecation-typesafe-variadic-class.dd Deprecate typesafe variadic class arguments (#20673) 2025-02-16 21:35:11 +01:00
dmd.deprecation-version-debug-number.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.error-messages.dd Print function bodies instead of __lambda in error messages 2025-02-17 00:41:33 +01:00
dmd.extern-std-cpp23.dd Merge stable (#21048) 2025-03-21 15:48:21 +01:00
dmd.ftime-trace.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.getBitfieldInfo.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.import-c-i.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.importc-pragma-stc.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.mixin-assign.dd Rename mixin-assign.dd to dmd.mixin-assign.dd 2024-09-29 13:04:26 +08:00
dmd.obj_extensions.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.objc-improvements.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.oq-compiler-switch.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.placementNew.dd Improve placement new changelog entry (#20954) 2025-03-06 15:58:46 +08:00
dmd.postfix-this-attributes.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.remove-samples.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.rvalue.dd Accept __rvalue attribute on ref functions; which will force the result to be treated as __rvalue. (#20946) 2025-03-10 04:06:29 -07:00
dmd.safer.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
dmd.shortened-method-constructor.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
druntime.bcrypt.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
druntime.criticalRegionLock.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
druntime.expect-trap.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
druntime.segfault-message.dd Polish changelog (#20864) 2025-02-14 08:23:16 +08:00
README.md changelog: Clarify naming convention of changelog entries that are now picked up by changed.d 2022-10-28 15:30:59 +01:00

This directory will get copied to dlang.org and cleared when master gets merged into stable prior to a new release.

How to add a new changelog entry to the pending changelog?

Create a new file in the changelog folder. It should begin with either dmd. or druntime. and end with .dd. The contents of the entry should look similar to a git commit message. The first line represents the title of the change. After an empty line follows the long description:

My fancy title of the new feature

A long description of the new feature in `std.range`.
It can be followed by an example:
-------
import std.range : padLeft, padRight;
import std.algorithm.comparison : equal;

assert([1, 2, 3, 4, 5].padLeft(0, 7).equal([0, 0, 1, 2, 3, 4, 5]));

assert("Hello World!".padRight('!', 15).equal("Hello World!!!!"));
-------
and links to the documentation, e.g. $(REF drop, std, range) or
$(REF_ALTTEXT a custom name for the function, drop, std, range).

Links to the spec can look like this $(LINK2 $(ROOT_DIR)spec/module.html, this)
and of course you can link to other $(LINK2 https://forum.dlang.org/, external resources).

The title can't contain links (it's already one). For more infos, see the Ddoc spec.

Preview changes

If you have cloned the tools and dlang.org repo, you can preview the changelog with:

make -C ../dlang.org -f posix.mak pending_changelog