Difference between revisions of "Agenda"
m (→complete DIP42 feature: wikilink) |
(→DMD) |
||
Line 44: | Line 44: | ||
This depends on fixing some codegen bugs<br/> | This depends on fixing some codegen bugs<br/> | ||
https://github.com/D-Programming-Language/dmd/pull/2561 | https://github.com/D-Programming-Language/dmd/pull/2561 | ||
+ | ==== fix [http://d.puremagic.com/issues/show_bug.cgi?id=7469 Issue 7469 - template mangling depends on instantiation order] ==== | ||
+ | https://github.com/D-Programming-Language/dmd/pull/701 | ||
=== Druntime === | === Druntime === |
Revision as of 17:37, 29 January 2014
Contents
- 1 v2.065 (2014)
- 2 v2.066 (??? 2014)
- 2.1 DMD
- 2.1.1 fix export DIP45
- 2.1.2 complete "Cross-module template overload" feature
- 2.1.3 complete DIP42 feature
- 2.1.4 introduce "uniform construction" syntax
- 2.1.5 Relax syntactic limitations around UDA
- 2.1.6 fix Issue 10985 - function inlining
- 2.1.7 fix Issue 7469 - template mangling depends on instantiation order
- 2.2 Druntime
- 2.3 Phobos
- 2.4 Tools
- 2.1 DMD
- 3 v2.067 (??? 2014)
v2.065 (2014)
This release focuses on reducing the ICE list.
DMD
ICEs in Bugzilla
Issue 11406 - binaries linked with ld.gold crash
Druntime
Phobos
Tools
automate release builds
- Nick Sabalausky wrote a release tool.
- Brad Roberts added install targets to the makefiles (dmd, druntime and phobos).
- Nightly builds from the autotesters
- Reusing existing makefiles is preferred
- Package scripts must build from source (see Issue 10710)
- Dejan Lekic made a Fedora SPEC file
- Multi-arch cross-compiler should be optional (more dependencies/bigger size for rarely needed feature)
v2.066 (??? 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
- https://github.com/D-Programming-Language/dmd/pull/2467 (Compiler)
- https://github.com/D-Programming-Language/dlang.org/pull/371 (Webpage)
- 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
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
Druntime
Initial work in pull request #617. Need to improve the API of the Library wrapper.
library AA
- Rough plan
- New AssociativeArray implementation by IgorStepanov Pull Request #676
- Add aaInit and aaLiteral to construct AA through them Pull Request #678
- Replace AssociativeArray struct with UFCS methods Pull Request #668
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. The fork: https://github.com/blackwhale/phobos/tree/uni-meets-regex
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 (??? 2014)
DMD
Druntime
- Overhaul core.time. TickDuration should be phased out in favor a monotonic clock type which converts to a core.time.Duration when you subtract one from another. Issue 11989