Skip to content

Latest commit

 

History

History
 
 

language-changelog

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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

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

My fancy new feature X

A long description of the new feature.
-------
import std.range;
import std.algorithm.comparison;

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!!!!"));
-------

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