Thread overview
Beta 2.086.1
Jun 12, 2019
Martin Nowak
Jun 13, 2019
Eugene Wissner
Jun 13, 2019
Eugene Wissner
Jun 13, 2019
Seb
Jun 13, 2019
Eugene Wissner
Jun 13, 2019
Walter Bright
Jun 15, 2019
steven kladitis
June 13, 2019
Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors.

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

As usual please report any bugs at
https://issues.dlang.org

-Martin
June 13, 2019
On Wednesday, 12 June 2019 at 23:51:39 UTC, Martin Nowak wrote:
> Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors.
>
> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.086.1.html
>
> As usual please report any bugs at
> https://issues.dlang.org
>
> -Martin

Mathis Beer and FeepingCreature are the same person.
June 13, 2019
On Thursday, 13 June 2019 at 03:48:05 UTC, Eugene Wissner wrote:
> On Wednesday, 12 June 2019 at 23:51:39 UTC, Martin Nowak wrote:
>> Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors.
>>
>> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.086.1.html
>>
>> As usual please report any bugs at
>> https://issues.dlang.org
>>
>> -Martin
>
> Mathis Beer and FeepingCreature are the same person.

And "Suleyman Sahmi" is listed twice.
June 13, 2019
On Thursday, 13 June 2019 at 03:48:05 UTC, Eugene Wissner wrote:
> On Wednesday, 12 June 2019 at 23:51:39 UTC, Martin Nowak wrote:
>> Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors.
>>
>> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.086.1.html
>>
>> As usual please report any bugs at
>> https://issues.dlang.org
>>
>> -Martin
>
> Mathis Beer and FeepingCreature are the same person.

PRs are welcome to:

https://github.com/dlang/tools/blob/master/.mailmap
June 13, 2019
On Thursday, 13 June 2019 at 09:06:30 UTC, Seb wrote:
> On Thursday, 13 June 2019 at 03:48:05 UTC, Eugene Wissner wrote:
>> On Wednesday, 12 June 2019 at 23:51:39 UTC, Martin Nowak wrote:
>>> Glad to announce the first beta for the 2.086.1 point release, ♥ to the 20 contributors.
>>>
>>> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.086.1.html
>>>
>>> As usual please report any bugs at
>>> https://issues.dlang.org
>>>
>>> -Martin
>>
>> Mathis Beer and FeepingCreature are the same person.
>
> PRs are welcome to:
>
> https://github.com/dlang/tools/blob/master/.mailmap

I always forget where is the alias list :) Mea culpa
June 13, 2019
On 6/12/2019 4:51 PM, Martin Nowak wrote:
> Glad to announce the first beta for the 2.086.1 point release, ♥ to the
> 20 contributors.
> 
> http://dlang.org/download.html#dmd_beta
> http://dlang.org/changelog/2.086.1.html
> 
> As usual please report any bugs at
> https://issues.dlang.org
> 
> -Martin
> 

Thank you, Martin!
June 15, 2019
On Thursday, 13 June 2019 at 21:41:54 UTC, Walter Bright wrote:
> On 6/12/2019 4:51 PM, Martin Nowak wrote:
>> Glad to announce the first beta for the 2.086.1 point release, ♥ to the
>> 20 contributors.
>> 
>> http://dlang.org/download.html#dmd_beta
>> http://dlang.org/changelog/2.086.1.html
>> 
>> As usual please report any bugs at
>> https://issues.dlang.org
>> 
>> -Martin
>> 
>
> Thank you, Martin!

I see in the newest pulls that "NULL" is not being tested correctly. I believe they should all use IS NULL or !IS null.

If I am correct, i would ask that all code be checked for this issue.


From Ali's Book and my experience in Database coding.


Determining whether it is null
However, because the == operator needs actual objects to compare, the
expression below cannot be compiled:
if (variable == null) // ← compilation ERROR
however this code must compile when it should not.