www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - Beta 2.086.1

reply Martin Nowak <code+news.digitalmars dawg.eu> writes:
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
Jun 12 2019
next sibling parent reply Eugene Wissner <belka caraus.de> writes:
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.
Jun 12 2019
next sibling parent Eugene Wissner <belka caraus.de> writes:
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.
Jun 12 2019
prev sibling parent reply Seb <seb wilzba.ch> writes:
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
Jun 13 2019
parent Eugene Wissner <belka caraus.de> writes:
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
Jun 13 2019
prev sibling parent reply Walter Bright <newshound2 digitalmars.com> writes:
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!
Jun 13 2019
parent steven kladitis <steven_kladitis yahoo.com> writes:
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.
Jun 15 2019