Re: D 2.067.1

2015-05-03 Thread extrawurst via Digitalmars-d-announce

On Sunday, 26 April 2015 at 17:53:07 UTC, Martin Nowak wrote:
We're glad to announce dmd 2.067.1 which includes several 
regression and

bug fixes over 2.067.0.

http://dlang.org/changelog.html#2.067.1

Please report any bug you encounter at 
https://issues.dlang.org/.


travis-ci still uses DMD64 D Compiler v2.067.0 on default and 
not the latest. where can one submit a PR for this ?


Re: D 2.067.1

2015-04-27 Thread Robert burner Schadek via Digitalmars-d-announce

awesome job



Re: D 2.067.1

2015-04-27 Thread Martin Nowak via Digitalmars-d-announce

On Sunday, 26 April 2015 at 22:05:36 UTC, Dicebot wrote:
Side note : when updating Arch package to 2.067.1 I decided to 
add `-L-lcurl` option to default `dmd.conf` in context of 
recent discussion on topic. Please report if that causes any 
issues with link order bugs - I couldn't trigger any but there 
are wild talse running around that those exist ;)


Yes, that doesn't work reliably because -lcurl is inserted before 
-lphobos on the link command, but phobos depends on curl, not 
your application which can lead to link errors if your 
applications doesn't drag in the relevant symbols from curl 
itself.


http://stackoverflow.com/questions/10095150/std-net-curl-linker-errors-in-linux

I have a pending pull to dynamically load curl, needs a bit more 
work though.

https://github.com/D-Programming-Language/phobos/pull/3009.


Re: D 2.067.1

2015-04-27 Thread Dicebot via Digitalmars-d-announce

On Monday, 27 April 2015 at 07:38:52 UTC, Martin Nowak wrote:

On Sunday, 26 April 2015 at 22:05:36 UTC, Dicebot wrote:
Side note : when updating Arch package to 2.067.1 I decided to 
add `-L-lcurl` option to default `dmd.conf` in context of 
recent discussion on topic. Please report if that causes any 
issues with link order bugs - I couldn't trigger any but there 
are wild talse running around that those exist ;)


Yes, that doesn't work reliably because -lcurl is inserted 
before -lphobos on the link command, but phobos depends on 
curl, not your application which can lead to link errors if 
your applications doesn't drag in the relevant symbols from 
curl itself.


http://stackoverflow.com/questions/10095150/std-net-curl-linker-errors-in-linux

I have a pending pull to dynamically load curl, needs a bit 
more work though.

https://github.com/D-Programming-Language/phobos/pull/3009.


Ok, I wasn't able to trigger it on my system but reverted the 
change anyway :) Better be safe.


Re: D 2.067.1

2015-04-26 Thread Dicebot via Digitalmars-d-announce
Side note : when updating Arch package to 2.067.1 I decided to 
add `-L-lcurl` option to default `dmd.conf` in context of recent 
discussion on topic. Please report if that causes any issues with 
link order bugs - I couldn't trigger any but there are wild talse 
running around that those exist ;)


D 2.067.1

2015-04-26 Thread Martin Nowak via Digitalmars-d-announce
We're glad to announce dmd 2.067.1 which includes several regression and
bug fixes over 2.067.0.

http://dlang.org/changelog.html#2.067.1

Please report any bug you encounter at https://issues.dlang.org/.


Re: Beta D 2.067.1-b1

2015-04-22 Thread Namespace via Digitalmars-d-announce

On Wednesday, 22 April 2015 at 07:53:57 UTC, Martin Nowak wrote:

On Wednesday, 22 April 2015 at 07:18:36 UTC, ponce wrote:


OT: How to know the list of D compilers available on Travis CI?


Any release/pre-release is available, and it's now also 
possible to use the latest dmd, gdc, and ldc release by 
omitting the version suffix.


https://github.com/travis-ci/travis-build/blob/75e95078743ead68c2bee2c828a4d3a538b977eb/lib/travis/build/script/d.rb#L94

Just reminding people of the fact that testing a beta requires 
very little work.


Any changelog to compare 2067 and 2067.1?


Re: Beta D 2.067.1-b1

2015-04-22 Thread Martin Nowak via Digitalmars-d-announce
On 04/22/2015 06:10 PM, Namespace wrote:
 Any changelog to compare 2067 and 2067.1?

Just a few regression fixes, see the github comparisons in the OP.


Re: Beta D 2.067.1-b1

2015-04-22 Thread Martin Nowak via Digitalmars-d-announce

On Wednesday, 22 April 2015 at 07:18:36 UTC, ponce wrote:


OT: How to know the list of D compilers available on Travis CI?


Any release/pre-release is available, and it's now also possible 
to use the latest dmd, gdc, and ldc release by omitting the 
version suffix.


https://github.com/travis-ci/travis-build/blob/75e95078743ead68c2bee2c828a4d3a538b977eb/lib/travis/build/script/d.rb#L94

Just reminding people of the fact that testing a beta requires 
very little work.


Re: Beta D 2.067.1-b1

2015-04-22 Thread ponce via Digitalmars-d-announce

On Wednesday, 22 April 2015 at 01:32:47 UTC, Martin Nowak wrote:


Also available on Travis-CI as dmd-2.067.1-b1.



OT: How to know the list of D compilers available on Travis CI?


Beta D 2.067.1-b1

2015-04-21 Thread Martin Nowak via Digitalmars-d-announce
First beta for the 2.067.1 point release.

http://downloads.dlang.org/pre-releases/2.x/2.067.1/
http://ftp.digitalmars.com/

Also available on Travis-CI as dmd-2.067.1-b1.

This beta comes with 9 dmd, 1 druntime, and 3 phobos fixes.

https://github.com/D-Programming-Language/dmd/compare/v2.067.0...v2.067.1-b1
https://github.com/D-Programming-Language/druntime/compare/v2.067.0...v2.067.1-b1
https://github.com/D-Programming-Language/phobos/compare/v2.067.0...v2.067.1-b1

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

-Martin