mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
![]() * bump VERSION to v2.110.0 * purge changelog * bump VERSION to v2.111.0-beta.1 * Accept __rvalue attribute on ref functions; which will force the result to be treated as __rvalue. (#20946) This is essential to implement `move`, `forward`, etc. * memoryerror.d: Fix AnySupported version condition (#20983) * Fix #20982 - wrong line number in iasmgcc (#20993) * Move genCfunc to cxxfrontend (#20992) * druntime: Fix compilation of rt.cover on Android (#21015) * Expose SourceLoc to C++ interface (#20980) * [stable] C++ header fixes for declaration, expression, and typinf (#21016) Seen either from compilation errors or missing symbols at link time. * C++ headers: Add 3 Declaration bitfield setters/getters required by LDC * druntime: Add module declaration to rt.invariant, to prevent conflicts with user-provided invariant.d (#21017) * Fix #21020 - Indexing a *cast* AA yields no lvalue anymore (#21029) * Add C++23 to CppStdRevision enum (#21043) * Improve UFCS/property error message (#21046) --------- Co-authored-by: Manu Evans <turkeyman@gmail.com> Co-authored-by: Martin Kinkelin <kinke@users.noreply.github.com> Co-authored-by: Iain Buclaw <ibuclaw@gdcproject.org> Co-authored-by: Martin Kinkelin <noone@nowhere.com> |
||
---|---|---|
.. | ||
dmd.auto-ref-local.dd | ||
dmd.auto-ref-put-adjacent.dd | ||
dmd.default-align.dd | ||
dmd.delete-keyword.dd | ||
dmd.deprecation-case.dd | ||
dmd.deprecation-dtor-fields.dd | ||
dmd.deprecation-noop-assignment.dd | ||
dmd.deprecation-pointer-subtract.dd | ||
dmd.deprecation-throwing-contracts.dd | ||
dmd.deprecation-typesafe-variadic-class.dd | ||
dmd.deprecation-version-debug-number.dd | ||
dmd.error-messages.dd | ||
dmd.extern-std-cpp23.dd | ||
dmd.ftime-trace.dd | ||
dmd.getBitfieldInfo.dd | ||
dmd.import-c-i.dd | ||
dmd.importc-pragma-stc.dd | ||
dmd.mixin-assign.dd | ||
dmd.obj_extensions.dd | ||
dmd.objc-improvements.dd | ||
dmd.oq-compiler-switch.dd | ||
dmd.placementNew.dd | ||
dmd.postfix-this-attributes.dd | ||
dmd.remove-samples.dd | ||
dmd.rvalue.dd | ||
dmd.safer.dd | ||
dmd.shortened-method-constructor.dd | ||
druntime.bcrypt.dd | ||
druntime.criticalRegionLock.dd | ||
druntime.expect-trap.dd | ||
druntime.segfault-message.dd | ||
README.md |
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 begin with either dmd.
or druntime.
and end with .dd
. The contents of the entry should 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