Releases: dlang-community/dsymbol
Releases · dlang-community/dsymbol
v0.11.0
Features & Fixes:
- fixes public selective imports introducing unrelated symbols (#147 by @dayllenger)
- implement symbols inside function literal parameters (inside
auto a = g({...});
) (#148 by @dayllenger) - fix conditional declarations (
version
) potentially tainting outside scope withprivate:
(#149 by @WebFreak001)
API breakage:
istring
compares by value instead of pointer again, (changes sort order) useopCmpFast
to compare by pointers (changes behavior to be like before v0.9.2, see #146)CacheEntry
andDSymbol
still compare by pointer, otheristring
usage will now compare by value unless usingopCmpFast
Minor:
- bump libdparse to 0.15.x
v0.10.0
v0.9.2
fixes memory leaks on thread termination #144
Regression: the sort order of istring
s has changed. If you used cmp(a,b)
before, it will no longer compile (though this seems like it's because of a bug in the compiler). If you used a<b
it will no longer sort on byte values but instead perform a pointer comparison now.
v0.9.1
0.7.0
v0.4.0
v0.3.0-beta.1
Merge pull request #60 from BBasile/compat-typeidlist Make compatible with TypeIdentifierPart
v0.2.9: Merge pull request #54 from SSoulaimane/nonimportable-patch
Non importable symbols patch issue #53
v0.2.0
Merge pull request #18 from Hackerpilot/issue_16 Fix protection stack calls.
v0.2.0-beta.2
Hackerpilot/DCD#354