dmd/changelog
Martin Nowak 953e34bc95 properly configure avx2
- add -mcpu=avx2
- add D_AVX2
- detect avx2 for -mcpu=native
- init backend avx with 2, 1, or 0
2017-07-09 13:29:36 +02:00
..
avx2.dd properly configure avx2 2017-07-09 13:29:36 +02:00
b6227.dd Fix #6821 changelog entry 2017-06-17 03:22:59 +00:00
changelog17421.dd add __traits(getFunctionVariadicStyle, f) 2017-05-23 14:07:27 -07:00
changelog17425.dd fix Issue 17425 - add __traits(getParameterStorageClasses, f, i) 2017-05-24 22:38:13 -07:00
disallowSemiEmpty.dd Deprecate empty statements made by semicolon 2017-06-11 09:13:51 +02:00
README.md Move changelog to a folder and use single file entries 2016-12-23 04:53:10 +01:00
removeArrayProps.dd More information in changelog entry 2017-06-06 22:48:44 +02: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