dmd/changelog
2024-05-10 17:03:18 +02:00
..
dmd.alias-instance-member.dd Fix Bugzilla 14128 - AliasDeclaration allows expressions, causing false … (#15863) 2024-04-19 17:55:31 +03:00
dmd.bitfield-introspection.dd bitfields: add bitoffsetof, bitwidth, isBitfield (#16444) 2024-05-08 14:59:34 +03:00
dmd.ctfeWrite.dd Implement __ctfeWrite builtin (#16250) 2024-03-18 11:26:29 -07:00
dmd.deprecation-limit.dd Fix error message in deprecation-limit.dd (#16471) 2024-05-10 17:02:53 +02:00
dmd.dtoh-windows.dd dtoh: export extern(Windows) and extern(System) functions (#16394) 2024-04-18 10:09:52 +03:00
dmd.foreach-array-index-type.dd Add changelog for #16334 (#16470) 2024-05-10 17:03:18 +02:00
dmd.foreach-reverse-delegate-error.dd Make foreach_reverse with a delegate an error (#16418) 2024-04-27 20:25:20 +08:00
dmd.identifier-tables.dd Implement UAX31 character ranges (#15307) 2024-03-18 11:19:16 -07:00
dmd.importc-unicode.dd Implement UAX31 character ranges (#15307) 2024-03-18 11:19:16 -07:00
dmd.linker-error.dd Demangle symbols in linker errors (#16021) 2024-04-24 14:35:14 +03:00
dmd.omf-removed.dd Kill off OMF support 2024-05-03 18:24:36 +12:00
druntime.core.sys.linux.sys.mount.dd Add module core.sys.linux.sys.mount 2024-05-07 02:02:11 +02:00
druntime.removenostackcollect.dd Remove the interface function fullCollectNoStack from the gcinterface (#16401) 2024-04-23 15:06:21 +08:00
druntime.thread-sleep-trusted.dd Mark Thread.sleep as @trusted (#16411) 2024-04-26 10:57:35 +03: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