phobos/changelog
2025-03-03 23:19:20 -05:00
..
bit-cast.dd Add std.conv.bitCast (#10651) 2025-02-28 13:54:10 -08:00
formatted_read_tuple_return.dd Add 'std.format.read.formattedRead' overloads to return a Tuple with values read (#8647) 2024-11-25 20:43:04 -08:00
fromhexstring.dd Add fromHexString, fromHexStringAsRange and isHexString 2024-11-03 17:59:26 +08:00
odbc-4.dd Add the ODBC 4.0 modules based on ImportC and deprecate the old ODBC 3.5 modules. (#10649) 2025-02-24 22:18:19 +08:00
pop-grapheme.dd Added a new popGrapheme function to std.uni (#9053) 2024-10-12 16:24:24 -07:00
readfln.dd stdio: add readfln and File.readfln 2025-03-03 03:47:52 +01:00
README.md Move changelog to a folder and use single file entries 2017-01-06 23:38:04 +01:00
shared-allocator-list.dd Add SharedAllocatorList (#10594) 2024-12-27 11:40:08 +08:00
sumtype_procedural_api.dd sumtype: add changelog entry for has, get, tryGet 2025-02-25 09:52:18 -05:00
unicode-16.dd Update to unicode 16.0.0 (#9058) 2024-10-16 06:24:56 +08: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 end with .dd and 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