phobos/changelog
2018-02-27 20:12:37 +01:00
..
bitflags-property-opdispatch.dd Improve wording of the changelog entry 2018-02-24 14:55:42 +01:00
compile-time-format-optimized.dd Optimized compile time formatstring format overloads 2018-01-16 09:30:03 -05:00
fix18397.dd DDocify the changelog entry 2018-02-09 14:40:20 +01:00
nullable-class.dd Add changelog. 2018-01-17 13:09:48 -08:00
README.md Move changelog to a folder and use single file entries 2017-01-06 23:38:04 +01:00
std-algorithm-iteration-substitute.dd Fix DAutotest 2018-01-25 09:32:54 +01:00
std-bigint-divmod.dd Added divMod function to std.bigint 2018-01-28 14:24:15 +01:00
std-bigint-getDigit.dd Added changelog entry 2018-01-03 15:08:50 -05:00
std-exception-enforce.dd Turn enforce into an eponymous template + undocument enforceEx 2018-02-07 01:01:59 +01:00
std-experimental-all.dd Renaming the upcoming global import file to std.experimental.all 2018-02-18 04:07:41 +01:00
std-experimental-allocator-rciallocator.dd Replace IAllocator with reference counted struct 2018-01-25 14:19:21 +01:00
std-experimental-allocator-rcisharedallocator.dd Replace IAllocator with reference counted struct 2018-01-25 14:19:21 +01:00
std-file-readText.dd Fix issue 15949: Make readText check BOMs. 2018-02-10 19:53:29 -07:00
std-parallelism-fold.dd Fix broken links in the std.parallelism.fold changelog entry 2018-02-19 17:38:26 +01:00
std-range-nullsink.dd std.range.nullSink - allow convenient use of the NullSink 2017-12-25 00:02:04 +01:00
std-range-slide.dd Revive std.range.slide 2018-01-17 06:36:46 +01:00
std-string-strip.dd Fix issue 13632: Enhancement to std.string.strip 2018-01-31 09:42:45 +05:30
std-traits-issomestring.dd fix link by deleting backticks from inside REF 2018-02-01 23:01:34 +01:00
toString.dd reworded the changelog entry 2018-01-23 22:50:06 -05: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