Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Breaking changes for 0.99.6

tango.util.PathUtil

normalize no longer takes a second parameter saying whether slashes should be normalized to the local version. Instead this is done automatically on Windows, and not done at all on platforms where / is the norm. [3414]

tango.core.Version

Changed representation of version specification - is now

public enum Tango {
    Major = 0,
    Minor = 996
}

tango.text.Util

split() operates differently than before (use -version=995 for prior behavior), such that

join(split(input));

will result in an equivalent to the original input. Regex operates in a similar manner.