Re: dmd 2.057 release

2011-12-13 Thread Bernard Helyer

Changelog isn't showing up for me.


Re: dmd 2.057 release

2011-12-13 Thread Jacob Carlborg

On 2011-12-14 08:09, Bernard Helyer wrote:

Changelog isn't showing up for me.


Same here, latest change log is 2.056, which is empty.

--
/Jacob Carlborg


Re: dmd 2.057 release

2011-12-13 Thread Walter Bright

On 12/13/2011 11:18 PM, Jacob Carlborg wrote:

On 2011-12-14 08:09, Bernard Helyer wrote:

Changelog isn't showing up for me.


Same here, latest change log is 2.056, which is empty.



Andrei's working on uploading it. Sorry about the delay.



Re: dmd 2.057 release

2011-12-13 Thread Andrej Mitrovic
Why is the result of this different between 2.056 and 2.057?

import std.stdio;
import std.regex;

void main() {
string src = 4.5.1;
foreach (c; match(src, regex(r(\d+
writeln(c.hit);
}

2.056:
4
5
1

2.057:
4