February 19, 2013
On 2013-02-19 15:21, Andrej Mitrovic wrote:

> If you mean this: https://github.com/D-Programming-Language/dmd/pull/1485
>
> That wasn't pulled yet.
>
> There's a partial implementation for documented unittests, but it's
> not fully implemented. There's several pulls that need to be merged to
> make it useful, but this didn't make it into 2.062 so we'll likely add
> it to the changelog for 2.063.
>

Aha, I see.

-- 
/Jacob Carlborg
February 19, 2013
On 2/18/13, Walter Bright <newshound2@digitalmars.com> wrote:
> The dlang.org site isn't updated yet, but the downloads are there.

The dlang changelog lists the release date as Jan 4, 2013, this is wrong.

http://dlang.org/changelog.html#new2_062
February 19, 2013
On 2/18/13, Dmitry Olshansky <dmitry.olsh@gmail.com> wrote:
> This D script dumps all fixed bugs between 2 dates as DDOC entries. https://gist.github.com/blackwhale/3734045
>
> (or just starting from one date till today).
>
> That being said I've brought it up like 5 times already. Must be not what you are looking for?

This is very helpful, thank you! P.S. it should cache the data to disk and read it from disk if the dates don't change from the last invocation. Querying bugzilla can take some time.

Anyway can you make a pull for this to https://github.com/D-Programming-Language/tools/ ?
February 19, 2013
19-Feb-2013 20:30, Andrej Mitrovic пишет:
> On 2/18/13, Dmitry Olshansky <dmitry.olsh@gmail.com> wrote:
>> This D script dumps all fixed bugs between 2 dates as DDOC entries.
>> https://gist.github.com/blackwhale/3734045
>>
>> (or just starting from one date till today).
>>
>> That being said I've brought it up like 5 times already.
>> Must be not what you are looking for?
>
> This is very helpful, thank you! P.S. it should cache the data to disk
> and read it from disk if the dates don't change from the last
> invocation. Querying bugzilla can take some time.
>
> Anyway can you make a pull for this to
> https://github.com/D-Programming-Language/tools/ ?
>

I'm on it.

I guess caching and other fancy stuff can be amended via the usual pull request path. I actually wanted it to get date/times of DMD/Phobos/Druntime versions from tags on Github (there is some REST api there).

-- 
Dmitry Olshansky
February 19, 2013
19-Feb-2013 21:00, Dmitry Olshansky пишет:
> 19-Feb-2013 20:30, Andrej Mitrovic пишет:
>> On 2/18/13, Dmitry Olshansky <dmitry.olsh@gmail.com> wrote:
>>> This D script dumps all fixed bugs between 2 dates as DDOC entries.
>>> https://gist.github.com/blackwhale/3734045
>>>
>>> (or just starting from one date till today).
>>>
>>> That being said I've brought it up like 5 times already.
>>> Must be not what you are looking for?
>>
>> This is very helpful, thank you! P.S. it should cache the data to disk
>> and read it from disk if the dates don't change from the last
>> invocation. Querying bugzilla can take some time.
>>
>> Anyway can you make a pull for this to
>> https://github.com/D-Programming-Language/tools/ ?
>>
>
> I'm on it.

Done:

https://github.com/D-Programming-Language/tools/pull/46


-- 
Dmitry Olshansky
February 19, 2013
On 2/18/2013 11:17 PM, Jacob Carlborg wrote:
> On 2013-02-18 21:58, Walter Bright wrote:
>
>> I forgot to include VERSION in the zip file. Its contents are:
>>
>> 2.062
>>
>> all on one line. I'll fix the packages.
>
> Do you have an automated script for packing up the zip file? If not, this is the
> time to create one. We have seen this problem before, IIRC.
>

Yes, I do use a script. The script has to copy all the correct files over to the right place. VERSION is a new file in a new place, and the script needed updating to copy that one.

Automation is great, and I use it. But files appear, disappear, and change directory from release to release, and so the scripts must change as well.
February 19, 2013
On 2/19/2013 8:10 AM, Andrej Mitrovic wrote:
> On 2/18/13, Walter Bright <newshound2@digitalmars.com> wrote:
>> The dlang.org site isn't updated yet, but the downloads are there.
>
> The dlang changelog lists the release date as Jan 4, 2013, this is wrong.
>
> http://dlang.org/changelog.html#new2_062
>

Yes, that's because the web site was pushed from master rather than the 2.062 branch.
February 19, 2013
On 2013-02-19 22:01, Walter Bright wrote:

> Yes, I do use a script. The script has to copy all the correct files
> over to the right place. VERSION is a new file in a new place, and the
> script needed updating to copy that one.
>
> Automation is great, and I use it. But files appear, disappear, and
> change directory from release to release, and so the scripts must change
> as well.

Yeah, that's true.

-- 
/Jacob Carlborg
February 19, 2013
> Yes, that's because the web site was pushed from master rather than the 2.062 branch.

http://dlang.org/phobos/index.html#std

Duplicates:

>std: Core library modules
>  std.base64 Functions that operate on ASCII characters.
>  std.base64 Encode/decode base64 format.
February 20, 2013
On 2/19/13, Andrej Mitrovic <andrej.mitrovich@gmail.com> wrote:
> I can see now there's a d.chm file in \bin.

Walter that .chm file you're distributing in Windows\bin is v2.058 (judging by the changelog), or some other version, but it definitely isn't the latest because documentation is missing (e.g. getProtection trait).

Why can't we open up the release process so we know exactly which scripts and procedure is used to make a release .zip? That way we can catch these bugs in time.