Difference between revisions of "Agenda"

From D Wiki
Jump to: navigation, search
Line 52: Line 52:
  
 
== v2.067 (Sept 2014) ==
 
== v2.067 (Sept 2014) ==
 +
 
=== DMD ===
 
=== DMD ===
 
==== Imports and Protection ====
 
==== Imports and Protection ====
Line 58: Line 59:
 
* https://github.com/D-Programming-Language/dmd/pull/2256
 
* https://github.com/D-Programming-Language/dmd/pull/2256
 
* [[DIP22|DIP22 - private symbol visibility]]
 
* [[DIP22|DIP22 - private symbol visibility]]
 +
==== Faster compilation ====
 +
* [https://issues.dlang.org/show_bug.cgi?id=13242 imported aliases should be analyzed lazily]
 +
* [https://issues.dlang.org/show_bug.cgi?id=13255 static imports should be done lazily]
 +
 
==== Fix Property ====
 
==== Fix Property ====
 
* Consolidate DIPs, discussion necessary?
 
* Consolidate DIPs, discussion necessary?
Line 63: Line 68:
 
** [[DIP23|DIP23 - Fixing property redux]]
 
** [[DIP23|DIP23 - Fixing property redux]]
 
** [[DIP24|DIP24 - Fixing properties and optional parens]]
 
** [[DIP24|DIP24 - Fixing properties and optional parens]]
 +
 
=== Druntime ===
 
=== Druntime ===
 
==== high-level shared library support ====
 
==== high-level shared library support ====
Line 76: Line 82:
 
==== Better stack traces ====
 
==== Better stack traces ====
 
* get line number information, [https://d.puremagic.com/issues/show_bug.cgi?id=11870 replace dynamic symbol table for backtraces]
 
* get line number information, [https://d.puremagic.com/issues/show_bug.cgi?id=11870 replace dynamic symbol table for backtraces]
 +
 +
=== Phobos ===
 +
 +
==== Faster compilation ====
 +
* [https://issues.dlang.org/show_bug.cgi?id=13253 use more scoped imports in phobos]

Revision as of 18:58, 4 August 2014

v2.066 (July 2014)

This release focuses on ???.

DMD

fix export DIP45

Get the DIP approved by Walter. Prototype an implementation to find further issues.

complete "Cross-module template overload" feature

https://github.com/D-Programming-Language/dmd/pull/2417

complete DIP42 feature

Related
https://github.com/D-Programming-Language/dmd/pull/2559
Allow lazy evaluation in manifest constant initializer.

introduce "uniform construction" syntax

Because it is already approved by Andrei.
https://github.com/D-Programming-Language/dmd/pull/1356

Relax syntactic limitations around UDA

https://github.com/D-Programming-Language/dmd/pull/2924

Allow multidimensional opSlice overloads

https://github.com/D-Programming-Language/dmd/pull/443
Addresses Issue 6798 - Integrate overloadings for multidimentional indexing and slicing

fix Issue 10985 - function inlining

This depends on fixing some codegen bugs
https://github.com/D-Programming-Language/dmd/pull/2561

fix Issue 7469 - template mangling depends on instantiation order

https://github.com/D-Programming-Language/dmd/pull/701

fix Issue 11171 - Text relocations in Phobos shared library

Review initZ and vtblZ relocations

fix Issue 11543 - multiple definition of std.regex with shared library

Must avoid copy relocations for ModuleInfos

Druntime

Phobos

Reduce dependency hell, split up huge modules to enable fine-grained imports.

Upgrade std.regex to make use of new std.uni.

The goal is to reuse public APIs and to get rid of the old internal Unicode implementation. This would de-bloat Phobos and put std.uni to some serious performance test.

Done, see the pull.

Split std.datetime so that it's a package rather than a module.

Rework std.variant's Algebraic (ADTs)

  • add compile-time checking that all possible types are handled by user code
  • allow recursive data types

Tools

v2.067 (Sept 2014)

DMD

Imports and Protection

Faster compilation

Fix Property

Druntime

high-level shared library support

Initial work in pull request #617. Need to improve the API of the Library wrapper.

library AA

Improve TickDuration

  • TickDuration should be phased out in favor a new MonoTime. To obtain a Duration one would need to subtract two MonoTimes. Issue 11989

Better stack traces

Phobos

Faster compilation