Thread overview
Beta 2.075.0-b2
Jul 05, 2017
Martin Nowak
Jul 07, 2017
Paolo Invernizzi
Jul 08, 2017
Martin Nowak
Jul 09, 2017
Seb
Jul 10, 2017
Martin Nowak
July 05, 2017
Second beta for the 2.075.0 release.

Comes with a couple of more fixes for dmd, phobos, and dub:

https://github.com/dlang/dmd/compare/v2.075.0-b1...v2.075.0-b2 https://github.com/dlang/phobos/compare/v2.075.0-b1...v2.075.0-b2 https://github.com/dlang/dub/compare/v1.4.0-beta.1...v1.4.0-beta.2

Downloads and changelog here:

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

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

- -Martin

July 07, 2017
On Wednesday, 5 July 2017 at 17:59:16 UTC, Martin Nowak wrote:
> Second beta for the 2.075.0 release.
>
> Comes with a couple of more fixes for dmd, phobos, and dub:
>
> https://github.com/dlang/dmd/compare/v2.075.0-b1...v2.075.0-b2 https://github.com/dlang/phobos/compare/v2.075.0-b1...v2.075.0-b2 https://github.com/dlang/dub/compare/v1.4.0-beta.1...v1.4.0-beta.2
>
> Downloads and changelog here:
>
> http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.075.0.html
>
> Please report any bugs at https://issues.dlang.org.
>
> - -Martin

Installed on macOS via brew...

  pinver$ /usr/local/Cellar/dmd/2.075.0-b2/bin/dmd --version
  DMD64 D Compiler v2.074.1

/Paolo
July 08, 2017
On Friday, 7 July 2017 at 09:27:15 UTC, Paolo Invernizzi wrote:
> /Paolo

We've recently changed the versioning of development builds and when we bump the hardcoded VERSION file https://github.com/dlang/dmd/pull/6935. Looks like we need to update that file for every pre-release now to please all the external builds that blindly use the VERSION file.
As we want (and might at some point) get rid of that VERSION file, builds should already prefer to pass the version explicitly (make -f posix.mak VERSION=v2.075.0-b2 RELEASE=1), unless they are cloning the repo and can rely on git describe.
July 09, 2017
On Saturday, 8 July 2017 at 23:53:57 UTC, Martin Nowak wrote:
> On Friday, 7 July 2017 at 09:27:15 UTC, Paolo Invernizzi wrote:
>> /Paolo
>
> We've recently changed the versioning of development builds and when we bump the hardcoded VERSION file https://github.com/dlang/dmd/pull/6935. Looks like we need to update that file for every pre-release now to please all the external builds that blindly use the VERSION file.
> As we want (and might at some point) get rid of that VERSION file, builds should already prefer to pass the version explicitly (make -f posix.mak VERSION=v2.075.0-b2 RELEASE=1), unless they are cloning the repo and can rely on git describe.

Just checking: you are aware that the latest beta (v2.075.0-b2) contains a regression in __VERSION__?

https://issues.dlang.org/show_bug.cgi?id=17614
July 10, 2017
On 07/09/2017 02:59 AM, Seb wrote:
> Just checking: you are aware that the latest beta (v2.075.0-b2) contains
> a regression in __VERSION__?
> 
> https://issues.dlang.org/show_bug.cgi?id=17614

Thanks I was not, went through the list of regressions a bit earlier on that same day.