Releases: dlang-community/DCD
Releases · dlang-community/DCD
v0.6.0
https://github.com/Hackerpilot/DCD/issues?q=milestone%3A0.6.0+is%3Aclosed
This release contains several bug fixes and one new feature: function call tips can be displayed after commas within argument lists.
v0.5.1: Objectively disoriented
v0.5.0
Changes from 0.4.0:
- Include current git commit hash in --version output
- Update libdparse and msgpack dependencies
- Fix several crashes
- Remove Textadept module. It is now at https://github.com/Hackerpilot/textadept-d
- Added basic regression testing scripts
- Fix #117
- Fix #177
- Fix #178
- Fix #179
- Fix #176
- Fix #182
- Fix #184
- Modify makefile to allow parallel LDC builds
- Containers and Libdparse submodule updates
- Improve handling of command line arguments in the client
- Fix type deduction on 'auto' variables.
- Update libdparse to fix issue where ddoc did not display on declarations that started with version(...)
- Fix issue with autocompletion on foreach loop variables.
v0.5.0-beta5
- Update libdparse to fix issue where ddoc did not display on declarations that started with
version(...) - Fix issue with autocompletion on foreach loop variables.
v0.5.0-beta4
Changes since beta 3:
- Modify makefile to allow parallel LDC builds
- Containers and Libdparse submodule updates
- Improve handling of command line arguments in the client
- Fix type deduction on 'auto' variables.
v0.5.0-beta3
- Fix #178
v0.5.0-beta2
Pull some lexer bug fixes from libdparse.
v0.5.0-beta
v0.4.0
Changes from 0.4.0-beta2:
-
Fix autocomplete on explicit template instantiation. For example, function call tips are now properly displayed for all four versions of "templated" in this code:
int templated(T)(int i) { return 100; } void main(string[] args) { templated(); templated!(string)(); templated!string(); templated!"str"(); }
-
Update libdparse dependency to fix various parsing bugs.
-
Fix building with LDC
v0.4.0-beta2
Very minor changes:
- Add --version to both the client and server
- Update man pages
- Update README
- Update --help output for client and server