phobos/changelog
Razvan Nitu b78773c5a4
Merge pull request #8015 from berni44/add_integer_efga
std.format: Add formatting integers with %e, %f, %g and %a.
2021-05-07 14:59:25 +08:00
..
add_centering_flag.dd Fix Issue 21858 - std.format: centering output 2021-04-26 19:20:41 +02:00
add_conversion_target.dd Deprecate ImplicitConversionTarget 2021-04-14 14:16:50 +02:00
add_format_integers_as_floats.dd Fix Issue 21847 - std.format: %e, %g and %a should be supported for integers too 2021-04-26 17:10:05 +02:00
bugfix_for_pow.dd Fix Issue 21601 - std.math : pow(float/double, -2) produces sometimes wrong result (#7783) 2021-03-01 14:50:46 +01:00
deprecate_enforceValidFormatSpec.dd Deprecate public access of enforceValidFormatSpec 2021-03-25 17:50:36 +01:00
deprecate_formatElement.dd Deprecate public access of formatElement 2021-03-25 10:17:21 +01:00
deprecate_unformatElement.dd Deprecate public access of unformatElement 2021-03-25 10:42:00 +01:00
fieldnametuple_interface.dd Revert change to FieldNameTuple for non-interface types 2021-04-27 10:34:10 +02:00
fields_interface.dd Sync Fields with FieldNameTuple for interfaces (#8023) 2021-05-03 12:55:23 +02:00
formatting_floats_in_CTFE.dd std.format: handle "exotic" reals by casting to double 2021-05-03 12:29:15 +02:00
formatting_floats_nogc.dd Clean up after making formating floating point numbers @nogc. 2021-04-27 13:18:11 +02:00
formatting_some_reals_as_doubles.dd std.format: handle "exotic" reals by casting to double 2021-05-03 12:29:15 +02:00
nullable-remove-alias-get-this.dd std.typecons.Nullable: Remove deprecated 'alias get this'. 2021-03-02 10:31:25 +01:00
README.md Move changelog to a folder and use single file entries 2017-01-06 23:38:04 +01:00
rework_format_docs.dd std.format: Repair docs of compound indicator and add examples. 2021-04-21 10:53:59 +02:00
splitting_format.dd std.format: Split off std/format/write.d 2021-03-16 11:48:44 +01:00
splitting_math.dd Add release note for splitting std.math. 2021-04-19 17:18:04 +02:00
splitwhen.dd Fix Issue 13595 - added splitWhen (#7794) 2021-03-18 15:27:34 +01:00
std-datetime.dd Add forgotten changelog messages. 2021-03-19 04:51:06 +01:00
std-exception.dd Add forgotten changelog messages. 2021-03-19 04:51:06 +01:00
std-sumtype.dd Add changelog entry for std.sumtype 2021-03-14 03:22:07 +01:00
transposed-remove-save.dd Add changelog entry 2021-03-11 17:17:07 +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 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