Jump to page: 1 2
Thread overview
Beta D 2.070.0-b2
Jan 17, 2016
Martin Nowak
Jan 18, 2016
Andrei Amatuni
Jan 18, 2016
Rory McGuire
Jan 18, 2016
Martin Nowak
Jan 18, 2016
Rory McGuire
Jan 18, 2016
Martin Nowak
Jan 19, 2016
Rory McGuire
Jan 18, 2016
Martin Nowak
Jan 19, 2016
Nordlöw
Jan 20, 2016
Martin Nowak
Jan 21, 2016
Nordlöw
Jan 18, 2016
deadalnix
Jan 19, 2016
Vladimir Panteleev
Jan 20, 2016
Jacob Carlborg
Jan 25, 2016
John Colvin
January 17, 2016
Second and last beta for the 2.070.0 release.

http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.070.0.html

Please report any bugs at https://issues.dlang.org

-Martin
January 18, 2016
On Sunday, 17 January 2016 at 20:52:20 UTC, Martin Nowak wrote:
> Second and last beta for the 2.070.0 release.
>
> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.070.0.html
>
> Please report any bugs at https://issues.dlang.org
>
> -Martin

Changelog doesn't include ndslice. Wasn't it merged for the 2.070 release?
January 18, 2016
On Mon, Jan 18, 2016 at 2:33 AM, Andrei Amatuni via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote:

> On Sunday, 17 January 2016 at 20:52:20 UTC, Martin Nowak wrote:
>
>> Second and last beta for the 2.070.0 release.
>>
>> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.070.0.html
>>
>> Please report any bugs at https://issues.dlang.org
>>
>> -Martin
>>
>
> Changelog doesn't include ndslice. Wasn't it merged for the 2.070 release?
>

The TypeTuple disappearance issue is still there. Should at least be marked deprecated first. Right?


January 18, 2016
On Monday, 18 January 2016 at 10:58:46 UTC, Rory McGuire wrote:
> The TypeTuple disappearance issue is still there. Should at least be marked deprecated first. Right?

It didn't disappear, std.typetuple is still there and deprecated.
What I found during testing was an incorrect `import std.range : TypeTuple` that no longer works. It's unfortunate that the import system doesn't prevent such mistakes.
January 18, 2016
On Monday, 18 January 2016 at 00:33:11 UTC, Andrei Amatuni wrote:
> Changelog doesn't include ndslice. Wasn't it merged for the 2.070 release?

Fixed, I simply forgot to update the changelog from phobos.
https://github.com/D-Programming-Language/dlang.org/commit/128de6cce74b6fe8f98c35d2e3b44c44517152c8
http://dlang.org/changelog/2.070.0.html
January 18, 2016
On Sunday, 17 January 2016 at 20:52:20 UTC, Martin Nowak wrote:
> Second and last beta for the 2.070.0 release.
>
> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.070.0.html
>
> Please report any bugs at https://issues.dlang.org
>
> -Martin

https://issues.dlang.org/show_bug.cgi?id=15564
January 18, 2016
On Mon, Jan 18, 2016 at 3:09 PM, Martin Nowak via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote:

> On Monday, 18 January 2016 at 10:58:46 UTC, Rory McGuire wrote:
>
>> The TypeTuple disappearance issue is still there. Should at least be marked deprecated first. Right?
>>
>
> It didn't disappear, std.typetuple is still there and deprecated.
> What I found during testing was an incorrect `import std.range :
> TypeTuple` that no longer works. It's unfortunate that the import system
> doesn't prevent such mistakes.
>

What I meant was it used to be available by importing std.typecons and now it isn't. There is a library on code.dlang.org that uses it, painlessjson I think it was.


January 18, 2016
On Monday, 18 January 2016 at 15:08:51 UTC, Rory McGuire wrote:
> What I meant was it used to be available by importing std.typecons and now it isn't. There is a library on code.dlang.org that uses it, painlessjson I think it was.

That's what I meant above, thought it was std.range.
TypeTuple was never part of std.typecons. The fact that it could be imported from there is a bug in our import system https://issues.dlang.org/show_bug.cgi?id=314.
January 19, 2016
On Mon, Jan 18, 2016 at 7:35 PM, Martin Nowak via Digitalmars-d-announce < digitalmars-d-announce@puremagic.com> wrote:

> On Monday, 18 January 2016 at 15:08:51 UTC, Rory McGuire wrote:
>
>> What I meant was it used to be available by importing std.typecons and now it isn't. There is a library on code.dlang.org that uses it, painlessjson I think it was.
>>
>
> That's what I meant above, thought it was std.range.
> TypeTuple was never part of std.typecons. The fact that it could be
> imported from there is a bug in our import system
> https://issues.dlang.org/show_bug.cgi?id=314.
>

:) nice, so most affected code probably occurred because the person forgot to import the correct module but it worked so they were never notified.


January 19, 2016
On Sunday, 17 January 2016 at 20:52:20 UTC, Martin Nowak wrote:
> Second and last beta for the 2.070.0 release.
>
> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.070.0.html
>
> Please report any bugs at https://issues.dlang.org
>
> -Martin

Sorry it took so long (been busy with dlang.org) but this needs to go in:

https://github.com/D-Programming-Language/druntime/pull/1472

« First   ‹ Prev
1 2